We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 007b7fa commit 4f15ae7Copy full SHA for 4f15ae7
2 files changed
.github/workflows/main.yml
@@ -53,7 +53,9 @@ jobs:
53
pip install tox==4.26.0
54
55
- name: Run tox
56
- run: tox -e ${{ matrix.name }}
+ run: tox -e "${MATRIX_NAME}"
57
+ env:
58
+ MATRIX_NAME: ${{ matrix.name }}
59
60
- name: Report coverage
61
if: contains(matrix.name, 'coverage')
tox.ini
@@ -48,7 +48,7 @@ commands =
48
ruff check --diff {posargs:pytest_django pytest_django_test tests}
49
ruff format --quiet --diff {posargs:pytest_django pytest_django_test tests}
50
mypy {posargs:pytest_django pytest_django_test tests}
51
- zizmor --persona=regular .github/workflows/deploy.yml .github/workflows/main.yml
+ zizmor --persona=pedantic .github/workflows/deploy.yml .github/workflows/main.yml
52
[testenv:doc8]
basepython = python3
0 commit comments