-
Notifications
You must be signed in to change notification settings - Fork 190
34 lines (33 loc) · 789 Bytes
/
CI.yml
File metadata and controls
34 lines (33 loc) · 789 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
name: CI
on:
push:
branches:
- master
- 'releases/**'
workflow_call:
workflow_dispatch:
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
run_unit_tests:
name: Run unit tests
uses: ./.github/workflows/run_unit_tests.yml
needs: [build]
generate_docs:
name: Generate docs
uses: ./.github/workflows/generate_docs.yml
needs: [build]
run_system_tests:
name: Run system tests
uses: ./.github/workflows/run_system_tests.yml
needs: [build, run_unit_tests]
report_test_results:
name: Report test results
uses: ./.github/workflows/report_test_results.yml
needs: [run_unit_tests, run_system_tests]
if: always()
permissions:
contents: read
checks: write
pull-requests: write