We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 406d38b commit b40f87fCopy full SHA for b40f87f
.github/workflows/tests.yml
@@ -20,10 +20,10 @@ jobs:
20
# os: ['ubuntu', 'windows', 'macos']
21
os: ['ubuntu']
22
env:
23
- PYTHON: "${{ join(matrix.python, '.') }}" # e.g. '3.11'
24
- TOX_ENV: "${{ format('{0}{1}', 'py', join(matrix.python, '')) }}" # e.g. 'py311'
25
- runs-on: "${{ format('{0}-latest', matrix.os) }}"
26
- name: '"Test py-${{ join(matrix.python, \'.\') }} (${{ matrix.os }})"'
+ PYTHON: ${{ join(matrix.python, '.') }} # e.g. '3.11'
+ TOX_ENV: ${{ format('{0}{1}', 'py', join(matrix.python, '')) }} # e.g. 'py311'
+ runs-on: ${{ format('{0}-latest', matrix.os) }}
+ name: "Test py-${{ join(matrix.python, '.') }} (${{ matrix.os }})"
27
steps:
28
29
- name: Checking out the repo
0 commit comments