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 15f0bfc commit 56d4a8dCopy full SHA for 56d4a8d
.github/workflows/ci.yml
@@ -20,9 +20,10 @@ jobs:
20
uses: pre-commit/action@v2.0.3
21
22
build:
23
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
24
strategy:
25
matrix:
26
+ os: [ubuntu-latest, windows-latest, macOS-latest]
27
python-version: ["3.7", "3.8", "3.9", "3.10"]
28
steps:
29
- uses: actions/setup-python@v2
@@ -36,4 +37,4 @@ jobs:
36
37
pip install tox
38
tox -- --cov tikzplotlib --cov-report xml --cov-report term
39
- uses: codecov/codecov-action@v1
- if: ${{ matrix.python-version == '3.9' }}
40
+ if: ${{ matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' }}
0 commit comments