-
Notifications
You must be signed in to change notification settings - Fork 51
42 lines (38 loc) · 1.05 KB
/
kuksa_val_unittest.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
name: kuksa_val_unittests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- ".github/workflows/kuksa_val_unittest.yml"
- "kuksa-val-server/**"
- "kuksa_certificates/**"
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
buildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Unit test
uses: ./.github/actions/unit-test
- name: listing test results
run: ls out
- name: Upload unittests artifact
uses: actions/upload-artifact@v4
with:
name: unittest
path: ${{github.workspace}}/out
- name: Publish Test Report
uses: codecov/codecov-action@v3
with:
files: ${{github.workspace}}/out/all_targets.info
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)