We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13b764c commit 1313c50Copy full SHA for 1313c50
.github/workflows/basic-ci.yaml
@@ -4,10 +4,11 @@ on: [push, pull_request]
4
jobs:
5
basic_ci:
6
name: Basic CI
7
- runs-on: ubuntu-22.04
8
strategy:
9
matrix:
10
python-version: ['3.8', 3.x]
+ os: [ubuntu-22.04, windows-latest]
11
+ runs-on: ${{ matrix.os }}
12
steps:
13
- uses: actions/checkout@v4
14
- name: Set up Python ${{ matrix.python-version }}
@@ -26,10 +27,11 @@ jobs:
26
27
uses: codecov/codecov-action@v3
28
cli_smoke_tests:
29
name: CLI smoke tests
30
31
32
python-version: [3.8, '3.x']
33
34
35
36
37
0 commit comments