Skip to content

Commit 954cd87

Browse files
committed
Cleanup
1 parent 87be92e commit 954cd87

File tree

2 files changed

+8
-38
lines changed

2 files changed

+8
-38
lines changed

.github/workflows/restore-venv/action.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/verify.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ${{ env.DEFAULT_PYTHON }}
3434
- name: Compute cache key
3535
id: set-key
36-
run: echo "cache-key=${{ runner.os }}-venv-cache-${{ env.CACHE_VERSION }}-${{ steps.python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'requirements_test.txt', '.pre-commit-config.yaml') }}" >> "$GITHUB_OUTPUT"
36+
run: echo "cache-key=${{ runner.os }}-venv-cache-${{ env.CACHE_VERSION }}-${{ steps.python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'requirements_commit.txt', 'requirements_test.txt', '.pre-commit-config.yaml') }}" >> "$GITHUB_OUTPUT"
3737

3838
# Prepare default python version environment
3939
prepare:
@@ -61,7 +61,7 @@ jobs:
6161
ruff:
6262
runs-on: ubuntu-latest
6363
name: Ruff check and force
64-
needs:
64+
needs:
6565
- cache
6666
- prepare
6767
steps:
@@ -140,12 +140,12 @@ jobs:
140140
pytest:
141141
runs-on: ubuntu-latest
142142
name: Run pytest using Python ${{ matrix.python-version }}
143-
needs:
143+
needs:
144144
- cache
145145
- prepare
146146
- commitcheck
147147
strategy:
148-
matrix:
148+
matrix:
149149
python-version: ["3.13"]
150150
steps:
151151
- name: Check out committed code
@@ -180,7 +180,7 @@ jobs:
180180
if: false # disables the job --> "Code is not up to par for mypy, skipping - see #171"
181181
runs-on: ubuntu-latest
182182
name: Run mypy
183-
needs:
183+
needs:
184184
- cache
185185
- prepare
186186
- pytest
@@ -231,7 +231,7 @@ jobs:
231231
coverage:
232232
name: Process test coverage
233233
runs-on: ubuntu-latest
234-
needs:
234+
needs:
235235
- cache
236236
- prepare
237237
- pytest
@@ -273,7 +273,7 @@ jobs:
273273
test-publishing:
274274
name: Build and publish Python 🐍 distributions 📦 to TestPyPI
275275
runs-on: ubuntu-latest
276-
needs:
276+
needs:
277277
- cache
278278
- prepare
279279
- coverage
@@ -313,7 +313,7 @@ jobs:
313313
complexity:
314314
name: Process test complexity
315315
runs-on: ubuntu-latest
316-
needs:
316+
needs:
317317
- cache
318318
- prepare
319319
- coverage

0 commit comments

Comments
 (0)