Browse Source
Merge branch 'main' into yaml-provider-refactor
pull/1047/head
Ross McFarland
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
0 deletions
-
.github/workflows/main.yml
|
|
|
@ -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: |
|
|
|
|