store htmlcov as a workflow artefact

This commit is contained in:
Renaud Boyer 2020-12-05 15:03:13 +01:00
parent db0114bf16
commit 0023627bf5
1 changed files with 6 additions and 0 deletions

View File

@ -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