Skip to content

ci: split compliance and build step #9

ci: split compliance and build step

ci: split compliance and build step #9

Workflow file for this run

name: Pull Request
on:
pull_request:
workflow_dispatch:
# Cancels in-progress workflows for a PR when updated
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run_compliance_checks:
name: Compliance Checks
uses: ./.github/workflows/compliance.yml
secrets: inherit
run_builds:
# if: opened, synchronize, or reopened, ready_for_review
needs:
- run_compliance_checks
name: Build step
uses: ./.github/workflows/builds.yml
secrets: inherit