Skip to content

CI/CD

CI/CD #24

Workflow file for this run

# Primary workflow that runs on each pull request and push to the primary
# branches, develop and main.
name: CI/CD
# Run on workflow dispatch to allow manual triggering of the workflow, and run
# on pushes and PRs to the main branches to enforce code quality and test
# coverage.
on:
workflow_dispatch:
jobs:
build-validation:
name: Build Validation
uses: ./.github/workflows/build.yml
with:
build-types: "[ 'Debug' ]"