Skip to content

Commit 7556a7e

Browse files
committed
2 parents 9c76507 + e6df76d commit 7556a7e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/build-windows.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,21 @@ on:
77
jobs:
88
build-windows:
99

10-
runs-on: ${{ matrix.os }}
10+
runs-on: windows-latest
1111
strategy:
1212
matrix:
13-
os: [windows-latest]
13+
python-version: [3.7]
1414

1515
steps:
1616
# Checkout repo
1717
- uses: actions/checkout@v3
18+
19+
# Set up python
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
1825
# Configure, build and test
1926
- name: configure
2027
run: mkdir build-release;cd build-release;cmake ..
@@ -29,7 +36,7 @@ jobs:
2936
strategy:
3037
matrix:
3138
# python-version: [3.7]
32-
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
39+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
3340

3441
steps:
3542
# Checkout repo

0 commit comments

Comments
 (0)