Skip to content

Commit

Permalink
Merge pull request #186 from GilsonLabUCSD/test-python-3.10
Browse files Browse the repository at this point in the history
Update CI.yaml -- include python 3.10 in unit tests
  • Loading branch information
jeff231li authored Feb 10, 2023
2 parents 1cf6ec1 + 2d0dc7a commit 5888b59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest]
python-version: [3.8, 3.9]
python-version: ["3.8", "3.9", "3.10"]
env:
PYVER: ${{ matrix.python-version }}
PACKAGE: paprika

steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3

- uses: conda-incubator/setup-miniconda@v2.1.1
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
environment-file: devtools/conda-envs/test_env.yaml
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
pytest $PYTEST_ARGS $PACKAGE
- name: Codecov
uses: codecov/codecov-action@v3.1.0
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: true

0 comments on commit 5888b59

Please sign in to comment.