We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdd2109 commit 4fa10dfCopy full SHA for 4fa10df
1 file changed
.github/workflows/release.yaml
@@ -11,14 +11,15 @@ on:
11
jobs:
12
13
test-suite:
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
python-version: [3.6, 3.7, 3.8]
18
+ os: [ubuntu-latest, macos-latest, windows-latest]
19
20
steps:
21
- uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
22
+ - name: Set up Python ${{ matrix.python-version }} ${{ matrix.os }}
23
uses: actions/setup-python@v2
24
with:
25
python-version: ${{ matrix.python-version }}
0 commit comments