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.
2 parents 1e4fe5d + b3e4a4b commit 449db55Copy full SHA for 449db55
.github/workflows/ci.yml
@@ -9,18 +9,25 @@ jobs:
9
10
runs-on: ${{ matrix.os }}
11
strategy:
12
+ fail-fast: true
13
matrix:
- os: [ubuntu-20.04]
14
- python-version: [3.9, 3.8, 3.7]
+ os:
15
+ - windows-2019
16
+ - ubuntu-20.04
17
+ - macos-latest
18
+ python:
19
+ - 3.7
20
+ - 3.8
21
+ - 3.9
22
23
steps:
24
- uses: actions/checkout@v2
25
with: # no need for the history
26
fetch-depth: 1
- - name: Set up Python ${{ matrix.python-version }}
27
+ - name: Set up Python ${{ matrix.python }}
28
uses: actions/setup-python@v2
29
with:
- python-version: ${{ matrix.python-version }}
30
+ python-version: ${{ matrix.python }}
31
32
- name: Install dependencies
33
run: |
0 commit comments