We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 498c566 + 1f94010 commit 2ac85f5Copy full SHA for 2ac85f5
1 file changed
.github/workflows/tests.yml
@@ -11,10 +11,19 @@ on:
11
jobs:
12
tests:
13
name: "Tests"
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
- python-version: ['3.7', '3.8', '3.9', '3.10']
+ include:
18
+ - os: 'ubuntu-latest'
19
+ python-version: '3.7'
20
+ - os: 'macos-latest'
21
+ python-version: '3.8'
22
+ - os: 'windows-latest'
23
+ python-version: '3.9'
24
25
+ python-version: '3.10'
26
+
27
steps:
28
- uses: actions/checkout@v2
29
- uses: actions/setup-python@v2
0 commit comments