From a57a443a4c95502fc0e73c8a2eb6f98c18065bbc Mon Sep 17 00:00:00 2001 From: mrg Date: Fri, 26 Feb 2021 16:31:41 -0800 Subject: [PATCH] Change coverage report location --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a09f511..6d55448b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,10 +46,10 @@ jobs: run: | python3-coverage combine python3-coverage report - python3-coverage html -d coverage_html + python3-coverage html -d ${{ github.workspace }}/coverage_html - name: Archive coverage uses: actions/upload-artifact@v2 with: name: code-coverage-report - path: coverage_html/ + path: ${{ github.workspace }}/coverage_html/