From: Chase <44284917+TotallyNotChase@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:18:00 +0000 (+0800) Subject: :wrench: Separate steps for building and testing in coverage X-Git-Tag: nightly~1244^2^2 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=refs%2Fpull%2F194%2Fhead;p=gwion.git :wrench: Separate steps for building and testing in coverage --- diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9cb72390..87494207 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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: