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.
2 parents 1d92822 + 37e0bf7 commit dee798eCopy full SHA for dee798e
.github/workflows/unit.yml
@@ -64,4 +64,8 @@ jobs:
64
- name: Install tox
65
run: python -m pip install tox
66
- name: Test
67
- run: python -m tox -e py-${{ matrix.platform }}
+ shell: bash
68
+ run: |
69
+ # Remove dots from python version string, i.e. 3.10 -> 310
70
+ PY_VERSION=$(echo "${{ matrix.python }}" | sed 's/\.//g')
71
+ python -m tox -e py${PY_VERSION}-${{ matrix.platform }}
0 commit comments