瀏覽代碼

Change command in github workflow file

Anton 2 年之前
父節點
當前提交
0391b58fb3
共有 2 個文件被更改,包括 2 次插入2 次删除
  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"
     }
 }