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.
2 parents c482e43 + 5fed8ec commit 9b6c949Copy full SHA for 9b6c949
.github/workflows/ci.yaml
@@ -88,10 +88,14 @@ jobs:
88
# The job name should match the name of the `nox` job.
89
name: Test with nox
90
needs: ["nox"]
91
+ # We skip this job only if nox was also skipped
92
+ if: always() && needs.nox.result != 'skipped'
93
runs-on: ubuntu-20.04
94
+ env:
95
+ DEPS_RESULT: ${{ needs.nox.result }}
96
steps:
- - name: Return true
- run: "true"
97
+ - name: Check matrix job result
98
+ run: test "$DEPS_RESULT" = "success"
99
100
nox-cross-arch:
101
name: Cross-arch tests with nox
0 commit comments