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 1bd7697 commit e278732Copy full SHA for e278732
.github/workflows/tests.yaml
@@ -31,13 +31,19 @@ jobs:
31
32
tests:
33
runs-on: ubuntu-22.04
34
+ strategy:
35
+ matrix:
36
+ include:
37
+ # Only test oldest supported and latest python version to reduce
38
+ # GitHub API calls, as they can get rate limited
39
+ - python-version: 3.8
40
+ - python-version: 3.x
41
42
steps:
43
- uses: actions/checkout@v4
- # Only testing 3.8 to avoid too many github API calls
44
- uses: actions/setup-python@v5
45
with:
- python-version: 3.8
46
+ python-version: "${{ matrix.python-version }}"
47
- name: Install dependencies
48
run: |
49
python -m pip install --upgrade pip
0 commit comments