From 0023627bf52cbae6b1d64a4d8dc965be9bf934c8 Mon Sep 17 00:00:00 2001 From: Renaud Boyer Date: Sat, 5 Dec 2020 15:03:13 +0100 Subject: [PATCH] store htmlcov as a workflow artefact --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78f83c7c..251d782a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,6 +40,12 @@ jobs: run: | pytest + - name: Archive code coverage results + uses: actions/upload-artifact@v2 + with: + name: code-coverage-report + path: htmlcov + - name: Publish to Docker Registry if: github.event_name == 'push' && github.ref == 'refs/heads/master' uses: docker/build-push-action@v1