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 e21fe94 commit 0de6d92Copy full SHA for 0de6d92
.github/workflows/test.yml
@@ -18,8 +18,11 @@ jobs:
18
- 3.8
19
- 3.9
20
include:
21
- - os: "ubuntu-20.04"
22
- python-version: "3.9"
+ - os: "ubuntu-latest"
+ # There is no build for Python 3.9 in ubuntu>20.04.
23
+ # This unclude can be removed when we drop support for Python 3.6.
24
+ - os: "ubuntu-20.04"
25
+ python-version: "3.9"
26
steps:
27
- uses: actions/checkout@v2
28
with:
@@ -30,7 +33,6 @@ jobs:
30
33
python-version: '${{ matrix.python-version }}'
31
34
- name: Install dependencies
32
35
run: |
- pip install --upgrade pip
36
pip3 install -r requirements.txt
37
pip3 install .
38
pip3 install coverage
0 commit comments