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 54a1cc0 commit c47e1e5Copy full SHA for c47e1e5
.github/workflows/tests.yml
@@ -2,9 +2,10 @@ name: Tests
2
on: push
3
jobs:
4
tests:
5
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
6
strategy:
7
matrix:
8
+ os: ['ubuntu-latest']
9
python-version: [
10
'3.8',
11
'3.9',
@@ -13,7 +14,10 @@ jobs:
13
14
'3.12',
15
]
16
include:
17
+ - python-version: '3.7'
18
+ os: 'ubuntu-22.04'
19
- python-version: '3.9'
20
+ os: 'ubuntu-latest'
21
post-venv: 'venv/bin/pip install "urllib3<2" "requests<=2.30" "types-requests<=2.30"'
22
name: Python ${{ matrix.python-version }} ${{ matrix.post-venv }}
23
steps:
0 commit comments