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 618aa5d commit 8fcfc33Copy full SHA for 8fcfc33
.github/workflows/ci.yaml
@@ -7,11 +7,17 @@ on:
7
8
jobs:
9
test:
10
- runs-on: ubuntu-latest
11
strategy:
12
matrix:
13
- python-version: [3.6, 3.7, 3.8]
14
-
+ include:
+ - python-version: 3.6
+ os: ubuntu-20.04
15
+ - python-version: 3.7
16
17
+ - python-version: 3.8
18
+ os: ubuntu-22.04
19
+
20
+ runs-on: ${{ matrix.os }}
21
22
steps:
23
- uses: actions/checkout@v4
@@ -45,7 +51,7 @@ jobs:
45
51
path: .coverage
46
52
47
53
deploy:
48
54
+ runs-on: ubuntu-22.04
49
55
needs: test
50
56
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
57
0 commit comments