-
Notifications
You must be signed in to change notification settings - Fork 76
45 lines (41 loc) · 955 Bytes
/
main.yml
File metadata and controls
45 lines (41 loc) · 955 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
36
37
38
39
40
41
42
43
44
45
name: Build application
on:
push:
pull_request:
merge_group:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: >-
${{ github.ref != 'refs/heads/master' &&
github.event_name != 'merge_group' &&
!startsWith(github.ref, 'refs/heads/gh-readonly-queue') }}
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yml
ubuntu:
needs:
- pre-commit
uses: ./.github/workflows/ubuntu.yml
with:
is_nightly: ${{ github.event_name == 'schedule' }}
mac:
needs:
- pre-commit
uses: ./.github/workflows/mac.yml
windows:
needs:
- pre-commit
uses: ./.github/workflows/windows.yml
perf:
needs:
- ubuntu
- mac
- windows
uses: ./.github/workflows/perf.yml
pages:
needs:
- perf
uses: ./.github/workflows/pages.yml