Skip to content

Commit 7fc050a

Browse files
Replace invalid expression
1 parent bc111a0 commit 7fc050a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ jobs:
4141
run: python -m pip install --upgrade tox
4242

4343
- name: Run tests
44-
run: tox -e py${{ matrix.python-version.replace('.', '') }}
44+
run: |
45+
TOXENV=${{ matrix.python-version }}
46+
TOXENV=${TOXENV//.}
47+
tox
4548
4649
- name: Run lint
4750
if: matrix.run-lint == true

0 commit comments

Comments
 (0)