Skip to content

Commit 1313c50

Browse files
committed
trying windows on ci
1 parent 13b764c commit 1313c50

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/basic-ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ on: [push, pull_request]
44
jobs:
55
basic_ci:
66
name: Basic CI
7-
runs-on: ubuntu-22.04
87
strategy:
98
matrix:
109
python-version: ['3.8', 3.x]
10+
os: [ubuntu-22.04, windows-latest]
11+
runs-on: ${{ matrix.os }}
1112
steps:
1213
- uses: actions/checkout@v4
1314
- name: Set up Python ${{ matrix.python-version }}
@@ -26,10 +27,11 @@ jobs:
2627
uses: codecov/codecov-action@v3
2728
cli_smoke_tests:
2829
name: CLI smoke tests
29-
runs-on: ubuntu-22.04
3030
strategy:
3131
matrix:
3232
python-version: [3.8, '3.x']
33+
os: [ubuntu-22.04, windows-latest]
34+
runs-on: ${{ matrix.os }}
3335
steps:
3436
- uses: actions/checkout@v4
3537
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)