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 d130b63 commit 803c185Copy full SHA for 803c185
.github/workflows/ci.yml
@@ -159,6 +159,9 @@ jobs:
159
build-binary:
160
name: Build Binary (${{ matrix.target }})
161
needs: [lint, test-unit, nightly-version]
162
+ # Allow this job to run even when nightly-version is skipped (PRs / non-main pushes).
163
+ # Without this, GitHub skips dependents of skipped jobs by default.
164
+ if: ${{ !failure() && !cancelled() }}
165
runs-on: ${{ matrix.os }}
166
strategy:
167
fail-fast: false
0 commit comments