Skip to content

Commit

Permalink
[Tests] Unit tests on more OSs (#90)
Browse files Browse the repository at this point in the history
* amend

* empty

* amend

* amend

* amend

* amend

* amend

* amend

* change examples

* amend

* copyright

* amend

* amend

* amend

* amend

* amend

* amend

* amend

* amend

* amend

* amend

* remove mac
  • Loading branch information
matteobettini authored Jun 10, 2024
1 parent 26eb297 commit 6c32503
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ permissions:

jobs:
tests:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10","3.11"]

python-version: ["3.9", "3.10","3.11"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
run: |
pytest test/ --doctest-modules --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html
- if: matrix.python-version == '3.10'
- if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest'
name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 6c32503

Please sign in to comment.