From 7803344ad3ba846080e878fce4afe107fd99149f Mon Sep 17 00:00:00 2001 From: Chase <44284917+TotallyNotChase@users.noreply.github.com> Date: Mon, 5 Oct 2020 03:18:00 +0800 Subject: [PATCH] :wrench: Separate steps for building and testing in coverage --- .github/workflows/coverage.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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: -- 2.43.0