Skip to content

Commit 07c5fa5

Browse files
committed
Simplify workflow by removing Windows/macOS-specific steps
- Limit OS matrix to `ubuntu-latest` for CI tests. - Remove Windows and macOS from the test matrix.
1 parent baa39b8 commit 07c5fa5

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/push-test.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
os: [ubuntu-latest, windows-latest, macos-latest]
9+
os: [ubuntu-latest]
1010
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
11-
exclude:
12-
- os: windows-latest
13-
python-version: "3.13"
1411
runs-on: ${{ matrix.os }}
1512

1613
steps:
@@ -22,11 +19,6 @@ jobs:
2219
with:
2320
python-version: ${{ matrix.python-version }}
2421
check-latest: true
25-
26-
- name: Install dependencies
27-
if: runner.os == 'Windows'
28-
run: pip install -r requirements.txt
29-
3022
- name: Run tests
3123
run: |
3224
python tests/runtests.py

0 commit comments

Comments
 (0)