-
Notifications
You must be signed in to change notification settings - Fork 197
31 lines (29 loc) · 862 Bytes
/
ci.yml
File metadata and controls
31 lines (29 loc) · 862 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
name: Continuous Integration
on:
# run this workflow on pull_request activity
# this includes opening and pushing more commits
pull_request:
branches: [ master, 3.27.x, 3.24.x ]
jobs:
unit_tests:
uses: ./.github/workflows/unit_tests.yml
shellcheck_tests:
uses: ./.github/workflows/shellcheck.yml
asan_unit_tests:
needs: unit_tests
uses: ./.github/workflows/asan_unit_tests.yml
acceptance_tests:
needs: unit_tests
uses: ./.github/workflows/acceptance_tests.yml
macos_unit_tests:
needs: unit_tests
uses: ./.github/workflows/macos_unit_tests.yml
valgrind_tests:
needs: unit_tests
uses: ./.github/workflows/valgrind.yml
static_check:
needs: unit_tests
uses: ./.github/workflows/job-static-check.yml
valgrind_check:
needs: unit_tests
uses: ./.github/workflows/job-valgrind-check.yml