-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (21 loc) · 632 Bytes
/
ci.yml
File metadata and controls
27 lines (21 loc) · 632 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
name: Continuous Integration
on:
# Triggers the workflow for pushes to development, for pull request events, and for the merge queue
push:
branches: [development]
pull_request:
types: [opened, reopened, ready_for_review, synchronize]
merge_group:
types: [checks_requested]
workflow_dispatch:
schedule:
- cron: '1 0 * * 0'
# Cancel in-progress runs if newer changes to the same branch/PR are pushed.
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
meson:
uses: ./.github/workflows/meson.yml
msbuild:
uses: ./.github/workflows/msbuild.yml