Skip to content

Commit d125cb8

Browse files
kameyer226ksunden
andauthored
updated CI yamls (#58)
* Use matrix strategy to use windows * add back runs-on --------- Co-authored-by: Kyle Sunden <[email protected]>
1 parent 207e3bd commit d125cb8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/python-pytest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ on:
77
jobs:
88
build:
99

10-
runs-on: ubuntu-latest
1110
strategy:
1211
matrix:
1312
python-version: ["3.8", "3.9", "3.10", "3.11"]
13+
os: [ubuntu-latest, windows-latest]
14+
runs-on: ${{ matrix.os }}
1415

1516
steps:
1617
- uses: actions/checkout@v2

.github/workflows/run-entry-points.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ on:
77
jobs:
88
build:
99

10-
runs-on: ubuntu-latest
1110
strategy:
1211
matrix:
1312
python-version: ["3.8", "3.9", "3.10"]
13+
os: [ubuntu-latest, windows-latest]
14+
runs-on: ${{ matrix.os }}
1415

1516
steps:
1617
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)