Browse Source

Merge branch 'main' into yaml-provider-refactor

pull/1047/head
Ross McFarland 2 years ago
committed by GitHub
parent
commit
b55cd4ff20
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