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 5ccf5d0 commit 992bbd2Copy full SHA for 992bbd2
.github/workflows/ci.yml
@@ -4,16 +4,22 @@ on: [push, pull_request]
4
5
jobs:
6
build:
7
- runs-on: ubuntu-latest
8
strategy:
9
fail-fast: false
10
matrix:
11
- python-version: [
12
- 3.6,
13
- 3.7,
14
- 3.8,
15
- 3.9,
16
- ]
+ os-version:
+ - ubuntu-latest
+ python-version:
+ - 3.6
+ - 3.7
+ - 3.8
+ - 3.9
17
+ include:
18
+ - python-version: 3.9
19
+ os-version: windows-latest
20
21
+ os-version: macos-latest
22
+ runs-on: ${{ matrix.os-version }}
23
steps:
24
- uses: actions/checkout@v2
25
- uses: actions/setup-python@v2
0 commit comments