Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ jobs:
test-stdlib:
needs: init
runs-on: ubuntu-latest
if: ${{ github.event_name != 'push' }}
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -217,6 +218,7 @@ jobs:
test-stdlib-golden:
needs: init
runs-on: ubuntu-latest
if: ${{ github.event_name != 'push' }}
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -357,7 +359,17 @@ jobs:
html-deploy:
needs: [init, html-generate, test-stdlib-golden, test-stdlib]
runs-on: ubuntu-latest
if: always()
steps:

# if either test jobs are skipped, 'needs' would normally skip
# this job.cancel-timeout-minutes.cancel-timeout-minutes.
# adding `if: always()` guarantees this job will run, but now
# checking the previous steps did in fact succeed has to be done manually
- name: Check Success
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1

- name: Checkout
uses: actions/checkout@v5

Expand Down
Loading