-
-
Notifications
You must be signed in to change notification settings - Fork 380
54 lines (50 loc) · 993 Bytes
/
pull_request.yml
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
46
47
48
49
50
51
52
53
54
name: Pull Request
on:
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
style:
name: Code style check
uses: ./.github/workflows/code_style_check.yml
codechecker:
name: CodeChecker
needs:
- style
uses: ./.github/workflows/codechecker.yml
iwyu:
name: IWYU
needs:
- style
uses: ./.github/workflows/iwyu.yml
msvc:
name: MSVC
needs:
- style
uses: ./.github/workflows/msvc.yml
sonarcloud:
name: SonarCloud Analyzer
needs:
- style
uses: ./.github/workflows/sonarcloud.yml
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
android:
name: Android
needs:
- msvc
uses: ./.github/workflows/android.yml
cmake:
name: CMake
needs:
- msvc
uses: ./.github/workflows/cmake.yml
make:
name: Make
needs:
- msvc
uses: ./.github/workflows/make.yml