We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33eed78 commit b4793bcCopy full SHA for b4793bc
.github/workflows/ci.yml
@@ -185,6 +185,7 @@ jobs:
185
- zizmor
186
- package
187
- rustfmt
188
+ - action-test
189
- clippy
190
# !cancelled() executes the job regardless of whether the previous jobs passed, failed or get skipped.
191
if: ${{ !cancelled() }}
@@ -198,4 +199,4 @@ jobs:
198
199
# Print the dependent jobs to see them in the CI log
200
printf '%s\n' "$NEEDS_JSON" | jq -C
201
# Check if all jobs that we depend on (in the needs array) were successful.
- printf '%s\n' "$NEEDS_JSON" | jq --exit-status 'all(.result == "success")'
202
+ printf '%s\n' "$NEEDS_JSON" | jq --exit-status 'all(.result == "success" or .result == "skipped")'
0 commit comments