Browse Source

Merge pull request #1046 from octodns/archive-code-coverage

Archive code coverage data
pull/1049/head
Ross McFarland 2 years ago
committed by GitHub
parent
commit
be1136e65e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      .github/workflows/main.yml

+ 10
- 0
.github/workflows/main.yml View File

@ -24,6 +24,16 @@ jobs:
- name: CI Build
run: |
./script/cibuild
- name: Store Code Coverage Data
# if the previous step(s) failed try anyways
if: always()
uses: actions/upload-artifact@v3
with:
name: code-coverage-${{ matrix.python-version }}
path: |
.coverage
coverage.xml
htmlcov
setup-py:
runs-on: ubuntu-latest
steps:


Loading…
Cancel
Save