Skip to content

Commit

Permalink
FIX: Dont need to upload code coverage for every OS
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-huberty committed Oct 2, 2024
1 parent c670dd1 commit f7c2295
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
- name: Test Pipeline
run: |
coverage run -m pytest
- name: Upload coverage to codecov
- name: Upload coverage to codecov (Only do this for the ubuntu-latest job)
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}

0 comments on commit f7c2295

Please sign in to comment.