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 62b3769 commit fee6b71Copy full SHA for fee6b71
.github/workflows/main.yml
@@ -47,6 +47,13 @@ jobs:
47
- ubuntu-latest
48
- macos-latest
49
- windows-latest
50
+ tox-environment:
51
+ - py
52
+ include:
53
+ # Test with the oldest supported ``packaging`` version.
54
+ - platform: ubuntu-latest
55
+ python-version: "3.9"
56
+ tox-environment: py-packaging240
57
runs-on: ${{ matrix.platform }}
58
steps:
59
- uses: actions/[email protected]
@@ -58,7 +65,7 @@ jobs:
65
- name: Run type-checking
66
run: python -m tox -e types
60
67
- name: Run tests
61
- run: python -m tox -e py
68
+ run: python -m tox -e ${{ matrix.tox-environment }}
62
69
63
70
# Because the tests can be flaky, they shouldn't be required for merge, but
64
71
# it's still helpful to run them on PRs. See:
0 commit comments