forked from open62541/open62541
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (31 loc) · 753 Bytes
/
coverage.yml
File metadata and controls
32 lines (31 loc) · 753 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
name: "Coverage Test"
on:
push:
branches: [ main, master ]
tags:
- v1.*
pull_request:
branches: [ main, master ]
tags:
- v1.*
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y -qq python3-sphinx graphviz check libmbedtls-dev mosquitto
- name: Fetch
uses: actions/checkout@v2
with:
submodules: true
- name: Execute Tests
run: source tools/ci.sh && unit_tests_with_coverage
env:
ETHERNET_INTERFACE: eth0
- name: Debug print
run: |
tree .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2