From d861564d9f467d86d17f2064139a76474c3b1eab Mon Sep 17 00:00:00 2001 From: Gabor Boros Date: Wed, 20 Oct 2021 08:56:08 +0200 Subject: [PATCH] build: fix build removing test output --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index db83793..01db54b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,14 +31,14 @@ jobs: run: make lint - name: Test run: make test - - name: Build - run: make build - name: Stash test results uses: actions/upload-artifact@master with: name: "Test results" path: .coverage.out retention-days: 7 + - name: Build + run: make build coverage: name: coverage