Skip to content

Fix syntax

Fix syntax #527

Workflow file for this run

name: "CI"
on:
push
concurrency:
# See https://github.com/TWiStErRob/github-workflows/blob/main/snippets/cancel-pr-ci-on-push.yml
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }}
cancel-in-progress: true
jobs:
validate:
name: "🦺 Validation"
uses: TWiStErRob/github-workflows/.github/workflows/validate.yml@main
build:
name: "🔨 Build & Verify"
needs: validate
uses: ./.github/workflows/build.yml
instrumentation:
name: "🧪 Instrumentation Tests"
needs: validate
uses: ./.github/workflows/instrumentation.yml