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 f55e08f commit cffa5d5Copy full SHA for cffa5d5
.github/workflows/ci.yml
@@ -15,17 +15,24 @@ on:
15
jobs:
16
tests:
17
name: Test suite
18
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
19
strategy:
20
matrix:
21
+ os: [ubuntu-latest]
22
python-version:
23
- 3.6
24
- 3.7
25
- 3.8
26
- 3.9
27
+ include:
28
+ # experimental testing on non-Linux platforms
29
+ - python-version: 3.9
30
+ os: windows-latest
31
32
+ os: macos-latest
33
steps:
34
- uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
35
+ - name: Set up Python ${{ matrix.python-version }} on ${{ runner.os }}
36
uses: actions/setup-python@v2
37
with:
38
python-version: ${{ matrix.python-version }}
0 commit comments