Răsfoiți Sursa

Change command in github workflow file

Anton 2 ani în urmă
părinte
comite
0391b58fb3
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      .github/workflows/test.yml
  2. 1 1
      composer.json

+ 1 - 1
.github/workflows/test.yml

@@ -47,4 +47,4 @@ jobs:
         run: composer analyze
 
       - name: Execute tests
-        run: vendor/bin/pest --coverage --colors=always
+        run: composer test

+ 1 - 1
composer.json

@@ -54,6 +54,6 @@
     },
     "scripts": {
         "analyze": "phpstan",
-        "test": "pest"
+        "test": "pest --colors=always"
     }
 }