Skip to content

Commit a958174

Browse files
committed
Rework env variables, ingest generated key
1 parent 741647d commit a958174

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/verify.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
ruff:
6262
runs-on: ubuntu-latest
6363
name: Ruff check and force
64-
needs: prepare
64+
needs:
65+
- cache
66+
- prepare
6567
steps:
6668
- name: Check out committed code
6769
uses: actions/checkout@v4
@@ -100,6 +102,7 @@ jobs:
100102
runs-on: ubuntu-latest
101103
name: Check commit
102104
needs:
105+
- cache
103106
- prepare
104107
- ruff
105108
- shellcheck
@@ -138,6 +141,7 @@ jobs:
138141
runs-on: ubuntu-latest
139142
name: Run pytest using Python ${{ matrix.python-version }}
140143
needs:
144+
- cache
141145
- prepare
142146
- commitcheck
143147
strategy:
@@ -177,6 +181,7 @@ jobs:
177181
runs-on: ubuntu-latest
178182
name: Run mypy
179183
needs:
184+
- cache
180185
- prepare
181186
- pytest
182187
steps:
@@ -227,6 +232,7 @@ jobs:
227232
name: Process test coverage
228233
runs-on: ubuntu-latest
229234
needs:
235+
- cache
230236
- prepare
231237
- pytest
232238
# - mypy # Re-instate mypy when we are ready
@@ -268,6 +274,7 @@ jobs:
268274
name: Build and publish Python 🐍 distributions 📦 to TestPyPI
269275
runs-on: ubuntu-latest
270276
needs:
277+
- cache
271278
- prepare
272279
- coverage
273280
# - mypy # Re-instate mypy when we are ready
@@ -307,6 +314,7 @@ jobs:
307314
name: Process test complexity
308315
runs-on: ubuntu-latest
309316
needs:
317+
- cache
310318
- prepare
311319
- coverage
312320
steps:

0 commit comments

Comments
 (0)