Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
janbender committed Dec 12, 2022
2 parents 9c76507 + e6df76d commit 7556a7e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@ on:
jobs:
build-windows:

runs-on: ${{ matrix.os }}
runs-on: windows-latest
strategy:
matrix:
os: [windows-latest]
python-version: [3.7]

steps:
# Checkout repo
- uses: actions/checkout@v3

# Set up python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

# Configure, build and test
- name: configure
run: mkdir build-release;cd build-release;cmake ..
Expand All @@ -29,7 +36,7 @@ jobs:
strategy:
matrix:
# python-version: [3.7]
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

steps:
# Checkout repo
Expand Down

0 comments on commit 7556a7e

Please sign in to comment.