Skip to content

Commit

Permalink
Used if statements instead for coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale authored Jan 21, 2024
1 parent b33941c commit d7f3df7
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,14 @@ jobs:
name: test
path: test_report.xml
- name: Upload coverage report
if: ${{ matrix.python-version }} == 3.9
uses: actions/upload-artifact@v4
with:
name: coverage
overwrite: true
path: coverage.xml

coveralls:
runs-on: ubuntu-latest
needs: [test]
steps:
- name: Download coverage report
uses: actions/download-artifact@v4
with:
name: coverage
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
- name: Coveralls GitHub Action
if: ${{ matrix.python-version }} == 3.9
uses: coverallsapp/[email protected]

doc-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d7f3df7

Please sign in to comment.