Skip to content

chore: run CI with beta4 #177

chore: run CI with beta4

chore: run CI with beta4 #177

Workflow file for this run

name: CI
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
merge_group:
pull_request:
types: [ready_for_review,converted_to_draft,opened, reopened, synchronize]
branches: [main]
jobs:
checks:
uses: ./.github/workflows/check.yml
with:
sdf_version: sdf-beta4
branch: ${{ github.ref }}
done:
name: Done
needs:
- checks
runs-on: ubuntu-latest
if: always()
steps:
- name: Dump needs context
env:
CONTEXT: ${{ toJson(needs) }}
run: |
echo -e "\033[33;1;4mDump context\033[0m"
echo -e "$CONTEXT\n"
- name: Report failure on cancellation
if: ${{ contains(needs.*.result, 'cancelled') || cancelled() }}
run: exit 1
- name: Failing test and build
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
- name: Don't allow skipped
if: ${{ contains(needs.*.result, 'skipped') }}
run: exit 1
- name: Successful test and build
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0