forked from ni/measurement-plugin-python
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 779 Bytes
/
CI.yml
File metadata and controls
33 lines (31 loc) · 779 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
name: CI
on:
push:
branches:
- main
- 'releases/**'
workflow_call:
workflow_dispatch:
jobs:
check_nims:
name: Check NIMS
uses: ./.github/workflows/check_nims.yml
check_nimg:
name: Check NIMG
uses: ./.github/workflows/check_nimg.yml
check_examples:
name: Check examples
uses: ./.github/workflows/check_examples.yml
run_unit_tests:
name: Run unit tests
uses: ./.github/workflows/run_unit_tests.yml
needs: [check_nims]
run_system_tests:
name: Run system tests
uses: ./.github/workflows/run_system_tests.yml
needs: [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()