Skip to content

Commit 556a4d3

Browse files
committed
Simplify matrix
1 parent 100aaed commit 556a4d3

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,15 @@ jobs:
1616
name: Python ${{ matrix.python-version }} with ${{ matrix.numpy }}
1717
strategy:
1818
matrix:
19-
#os: [windows-latest, ubuntu-latest, macos-latest]
19+
os: [windows-latest, ubuntu-latest, macos-latest]
2020
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21-
numpy: ["numpy"]
22-
include:
23-
- python-version: "3.9"
21+
numpy:
22+
- "numpy"
23+
- "numpy==1.26.4"
24+
exclude:
25+
- python-version: "3.13"
2426
numpy: "numpy==1.26.4"
25-
- python-version: "3.10"
26-
numpy: "numpy==1.26.4"
27-
- python-version: "3.11"
28-
numpy: "numpy==1.26.4"
29-
- python-version: "3.12"
30-
numpy: "numpy==1.26.4"
31-
runs-on: ubuntu-latest
27+
runs-on: ${{ matrix.os }}
3228
steps:
3329
- uses: actions/checkout@v4
3430
- uses: astral-sh/setup-uv@v3

0 commit comments

Comments
 (0)