Skip to content

Commit 1d2e229

Browse files
authored
Merge pull request #59 from Kai-Striega/npf_57_bump_test_versions
TST/MAINT: Update CI scirpts
2 parents d24fa09 + 6557d2d commit 1d2e229

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ${{ matrix.os }}
99
strategy:
10-
max-parallel: 4
1110
matrix:
12-
python-version: [3.6, 3.7]
13-
numpy-version: [1.15, 1.16, 1.17]
11+
os: [ubuntu-latest, macos-latest, windows-latest]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
13+
numpy-version: ["oldest-supported-numpy", "numpy"]
1414

1515
steps:
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install numpy==${{ matrix.numpy-version }}
24+
pip install ${{ matrix.numpy-version }}
2525
- name: Lint with flake8
2626
run: |
2727
pip install flake8

0 commit comments

Comments
 (0)