Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/48-test-across-operating-systems'
Browse files Browse the repository at this point in the history
  • Loading branch information
pattonw committed Jun 25, 2024
2 parents ad974c1 + 2582102 commit 68d560a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:

jobs:
test:
runs-on: ubuntu-latest
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand All @@ -22,4 +24,4 @@ jobs:
pip install ".[dev]"
- name: Test with pytest
run: |
pytest tests
pytest tests

0 comments on commit 68d560a

Please sign in to comment.