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 373f153 commit 4142e56Copy full SHA for 4142e56
.github/workflows/tests.yml
@@ -43,10 +43,10 @@ jobs:
43
git
44
- name: Install dependencies
45
run: |
46
- python -m pip install --upgrade pip
47
- python -m pip install tox pre-commit
+ python${{ matrix.python-version }} -m pip install --upgrade pip
+ python${{ matrix.python-version }} -m pip install tox pre-commit
48
- name: Lint and format
49
- run: pre-commit run --all-files
+ run: python${{ matrix.python-version }} -m pre-commit run --all-files
50
- name: Test with tox
51
- run: tox -e test
+ run: python${{ matrix.python-version }} -m tox -e test
52
0 commit comments