We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79dc252 commit 75eb32cCopy full SHA for 75eb32c
1 file changed
.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
15
with:
16
tox: pre-commit,type-checking
17
18
- uv_test:
+ test:
19
runs-on: ubuntu-latest
20
strategy:
21
matrix:
@@ -59,7 +59,7 @@ jobs:
59
run: uv run tox -e system-test
60
61
container:
62
- needs: test
+ needs: [test, system-test]
63
if: always()
64
uses: ./.github/workflows/_container.yml
65
@@ -83,7 +83,7 @@ jobs:
83
id-token: write
84
85
release:
86
- needs: [dist, test, docs]
+ needs: [dist, test, docs, container]
87
if: github.ref_type == 'tag'
88
uses: ./.github/workflows/_release.yml
89
permissions:
0 commit comments