]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Separate steps for building and testing in coverage 194/head
authorChase <44284917+TotallyNotChase@users.noreply.github.com>
Sun, 4 Oct 2020 19:18:00 +0000 (03:18 +0800)
committerGitHub <noreply@github.com>
Sun, 4 Oct 2020 19:18:00 +0000 (03:18 +0800)
.github/workflows/coverage.yml

index 9cb7239075c4ce9797cde3915f5c06c103f6d49c..874942078fc7c528f273c9c77933d154563e6848 100644 (file)
@@ -24,10 +24,13 @@ jobs:
     - name: Init submodules
       run: git submodule update --init util ast
 
-    - name: Build & Test Gwion
-      run: make && make test
+    - name: Build Gwion
+      run: make
       env:
         USE_COVERAGE: 1
+        
+    - name: Test Gwion
+      run: make test
 
     - uses: actions/setup-python@v1
       with: