Skip to content

Commit

Permalink
MNT run tests on macos too (#68)
Browse files Browse the repository at this point in the history
* MNT run tests on windows and macos too

* Let's ignore windows testing for the moment

* Do not test on Python 3.7 [EOL]
  • Loading branch information
mvdoc authored Sep 30, 2024
1 parent 4a4f714 commit 5288e36
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ on:

jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
max-parallel: 5
fail-fast: true
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 5288e36

Please sign in to comment.