Sfoglia il codice sorgente

Change command in github workflow file

Anton 2 anni fa
parent
commit
0391b58fb3
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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"
     }
 }