-
Notifications
You must be signed in to change notification settings - Fork 148
44 lines (38 loc) · 990 Bytes
/
unit_tests.yaml
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: Unit Tests
on:
# run for all pull requests
# Run for all commits on feature branches
push:
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/**'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/**'
jobs:
###############################################################################
# builds the automated tests with clang; runs tests and exports results
googleTest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
run: |
cd tests
make release
- name: Run Tests
run: |
cd tests/build/bin
./libDaisy_gtest --gtest_output=xml:gtestresults.xml
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
files: tests/build/bin/**/*.xml
github_token: ${{ secrets.GITHUB_TOKEN }}