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 7e7b71a commit f2fc01bCopy full SHA for f2fc01b
.github/workflows/tests.yml
@@ -21,17 +21,19 @@ jobs:
21
22
steps:
23
- uses: actions/checkout@v2
24
+
25
- name: Set up Python ${{ matrix.python-version }}
26
uses: actions/setup-python@v2
27
with:
28
python-version: ${{ matrix.python-version }}
29
30
- name: Install dependencies
31
run: |
- python -m pip install --upgrade pip wheel setuptools tox
32
+ python -m pip install --upgrade pip wheel setuptools
33
+ python -m pip install --upgrade tox tox-py
34
35
- name: Run tox targets for ${{ matrix.python-version }}
- run: |
- ENV_PREFIX=$(tr -C -d "0-9" <<< "${{ matrix.python-version }}")
- TOXENV=$(tox --listenvs | grep "^py$ENV_PREFIX" | tr '\n' ',') python -m tox
36
+ run: tox --py current
37
38
lint:
39
name: Lint
0 commit comments