Skip to content

Commit

Permalink
Merge branch 'master' into feat/warnings-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper authored Jan 21, 2025
2 parents 1c93021 + 762eec6 commit 0f17464
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,20 +271,16 @@ jobs:
run: |
coverage xml
- name: Upload coverage sqlite artifact
- name: Upload coverage artifacts
# upload coverage sqlite db for debugging
# upload coverage.xml artifact for downstream codecov upload action
uses: actions/upload-artifact@v4
with:
name: coverage-sqlite
name: coverage-artifacts
include-hidden-files: true
path: .coverage
if-no-files-found: error

- name: Upload coverage.xml
uses: actions/upload-artifact@v4
with:
name: coverage-xml
path: coverage.xml
path: |
.coverage
coverage.xml
if-no-files-found: error

upload-coverage:
Expand All @@ -296,10 +292,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: coverage-xml
name: coverage-artifacts

- name: Upload Coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
files: coverage.xml

0 comments on commit 0f17464

Please sign in to comment.