-
Notifications
You must be signed in to change notification settings - Fork 10
35 lines (32 loc) · 875 Bytes
/
cicd.yml
File metadata and controls
35 lines (32 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
workflow_dispatch:
workflow_call:
jobs:
build-validation:
name: Build Validation
permissions:
contents: read
actions: read
security-events: write
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
uses: ./.github/workflows/build.yml
with:
build-types: "[ 'Debug' ]"
test: true
preset-name: 'cicd'