Skip to content

Commit 449db55

Browse files
authored
Merge pull request nipype#40 from satra/fix/ci-matrix
enhance testing matrix
2 parents 1e4fe5d + b3e4a4b commit 449db55

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,25 @@ jobs:
99

1010
runs-on: ${{ matrix.os }}
1111
strategy:
12+
fail-fast: true
1213
matrix:
13-
os: [ubuntu-20.04]
14-
python-version: [3.9, 3.8, 3.7]
14+
os:
15+
- windows-2019
16+
- ubuntu-20.04
17+
- macos-latest
18+
python:
19+
- 3.7
20+
- 3.8
21+
- 3.9
1522

1623
steps:
1724
- uses: actions/checkout@v2
1825
with: # no need for the history
1926
fetch-depth: 1
20-
- name: Set up Python ${{ matrix.python-version }}
27+
- name: Set up Python ${{ matrix.python }}
2128
uses: actions/setup-python@v2
2229
with:
23-
python-version: ${{ matrix.python-version }}
30+
python-version: ${{ matrix.python }}
2431

2532
- name: Install dependencies
2633
run: |

0 commit comments

Comments
 (0)