We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1205f8 commit 9f890f4Copy full SHA for 9f890f4
1 file changed
.github/workflows/verify.yml
@@ -4,7 +4,7 @@
4
name: Latest commit
5
6
env:
7
- CACHE_VERSION: 16
+ CACHE_VERSION: 1
8
DEFAULT_PYTHON: "3.14"
9
PRE_COMMIT_HOME: ~/.cache/pre-commit
10
VENV: venv
@@ -153,12 +153,12 @@ jobs:
153
precommit-home: ${{ env.PRE_COMMIT_HOME }}
154
- name: Run all tests
155
run: |
156
- . venv-${{ matrix.python-version }}/bin/activate
+ . venv-${{ steps.python.outputs.python-version }}/bin/activate
157
pytest --log-level info tests/*.py --cov='.'
158
- name: Upload coverage artifact
159
uses: actions/upload-artifact@v4
160
with:
161
- name: coverage-${{ matrix.python-version }}
+ name: coverage-${{ steps.python.outputs.python-version }}
162
path: .coverage
163
if-no-files-found: error
164
include-hidden-files: true
0 commit comments