1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-25 18:42:31 +01:00

This may make it much more confusing

This commit is contained in:
Lance Pioch 2022-10-29 00:59:19 -04:00
parent f112fec457
commit 5692dca579

View File

@ -65,6 +65,12 @@ jobs:
- name: Curl Test Localhost
run: curl localhost:8000/api/system
- name: PHP Curl Test 127.0.0.1
run: "php -r 'echo curl_exec(curl_init(\"127.0.0.1:8000/api/system\")) ?: \"failed\";'"
- name: PHP Curl Test Localhost
run: "php -r 'echo curl_exec(curl_init(\"localhost:8000/api/system\")) ?: \"failed\";'"
- name: Run Dusk Tests
run: php artisan dusk
- name: Upload Screenshots