Skip to content

Commit db5dc3f

Browse files
authored
Merge pull request #114 from fkiraly/simplify-tests
[MNT] simplify CI specs
2 parents a1b1918 + 4bc46e7 commit db5dc3f

3 files changed

Lines changed: 5 additions & 112 deletions

File tree

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: macOS
1+
name: tests
22

33
on:
44
push:
@@ -19,13 +19,15 @@ jobs:
1919
strategy:
2020
matrix:
2121
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
22+
os: ["macos-latest", "windows-latest", "ubuntu-latest"]
2223

2324
fail-fast: false
2425

25-
runs-on: macos-latest
26+
runs-on: ${{ matrix.os }}
27+
timeout-minutes: 30
2628

2729
steps:
28-
- uses: actions/checkout@master
30+
- uses: actions/checkout@v4
2931

3032
- name: Set up Python ${{ matrix.python-version }}
3133
uses: actions/setup-python@v5
@@ -42,4 +44,3 @@ jobs:
4244
- name: Test with pytest
4345
run: |
4446
python -m pytest tests --cov=hyperactive --cov-report=term-missing --cov-report=xml -p no:warnings
45-

.github/workflows/tests_ubuntu.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/tests_windows.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)