Skip to content

Commit

Permalink
limit grid to run tests on
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg committed May 14, 2024
1 parent 7a64f15 commit 3b48829
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,21 @@ jobs:
needs: Validate
if: github.repository_owner == 'explosion'
strategy:
fail-fast: false
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.12"]
include:
- os: macos-latest
python_version: "3.7"
- os: windows-latest
python_version: "3.8"
- os: ubuntu-latest
python_version: "3.9"
- os: macos-latest
python_version: "3.10"
- os: windows-latest
python_version: "3.11"
runs-on: ${{ matrix.os }}

steps:
Expand Down

0 comments on commit 3b48829

Please sign in to comment.