We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6b0d63 commit baba88cCopy full SHA for baba88c
.github/workflows/main.yml
@@ -48,6 +48,13 @@ jobs:
48
- ubuntu-latest
49
- macos-latest
50
- windows-latest
51
+ tox-environment:
52
+ - py
53
+ include:
54
+ # Test with the oldest supported ``packaging`` version.
55
+ - platform: ubuntu-latest
56
+ python-version: "3.8"
57
+ tox-environment: py-packaging240
58
runs-on: ${{ matrix.platform }}
59
steps:
60
- uses: actions/checkout@v4.2.2
@@ -59,7 +66,7 @@ jobs:
66
- name: Run type-checking
67
run: python -m tox -e types
61
68
- name: Run tests
62
- run: python -m tox -e py
69
+ run: python -m tox -e ${{ matrix.tox-environment }}
63
70
64
71
# Because the tests can be flaky, they shouldn't be required for merge, but
65
72
# it's still helpful to run them on PRs. See:
0 commit comments