Take out unnecessary tests

This commit is contained in:
Lance Pioch 2022-10-29 02:55:18 -04:00
parent e4b48c5b79
commit 408ca6e994

View file

@ -59,18 +59,6 @@ jobs:
- name: Start Chrome Driver
run: ./vendor/laravel/dusk/bin/chromedriver-linux --whitelisted-ips="" &
- name: Curl Test 127.0.0.1
run: curl -X POST 127.0.0.1:8000/api/servers
- name: Curl Test Localhost
run: curl -X POST localhost:8000/api/servers
- name: PHP Curl Test 127.0.0.1
run: "php -r '$ch = curl_init(\"127.0.0.1:8000/api/servers\"); curl_setopt($ch, CURLOPT_POST, 1); echo curl_exec($ch) ?: \"failed\";'"
- name: PHP Curl Test Localhost
run: "php -r '$ch = curl_init(\"localhost:8000/api/servers\"); curl_setopt($ch, CURLOPT_POST, 1); echo curl_exec($ch) ?: \"failed\";'"
- name: Run Dusk Tests
run: php artisan dusk
- name: Upload Screenshots