Skip to content

Commit

Permalink
Update CI action (#565)
Browse files Browse the repository at this point in the history
* Fix action job name
* Make nose generate coverage.xml directly
* Use codecov flags to differentiate all matrix dimensions
  • Loading branch information
jmuhlich committed Aug 17, 2022
1 parent 0a29e3b commit 9f556c8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Continuous Integration
on: [push, pull_request]

jobs:
Tests & Coverage:
tests_coverage:
name: Tests & Coverage
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -45,5 +46,9 @@ jobs:
nosetests
build/lib/pysb
--with-coverage --cover-inclusive --cover-package=build/lib/pysb
--cover-xml
-a '!gpu'
- uses: codecov/codecov-action@v3
with:
verbose: true
flags: os-${{ matrix.os }},python-${{ matrix.python-version }}

0 comments on commit 9f556c8

Please sign in to comment.