Skip to content

Commit 9064471

Browse files
committed
- github action update
1 parent 6b376ea commit 9064471

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build-windows.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,22 @@ 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]
14+
# python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
1415

1516
steps:
1617
# Checkout repo
1718
- uses: actions/checkout@v3
19+
20+
# Set up python
21+
- name: Set up Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
1826
# Configure, build and test
1927
- name: configure
2028
run: mkdir build-release;cd build-release;cmake ..

0 commit comments

Comments
 (0)