-
Notifications
You must be signed in to change notification settings - Fork 5
55 lines (45 loc) · 1.35 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
name: CI - Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# run unit tests
test:
runs-on: ubuntu-latest
steps:
# checkout the repository
- uses: actions/checkout@v4
# enable caching of pip and platformio
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
# install GCC for platformio native platform
# https://docs.platformio.org/en/latest/platforms/native.html#installation
- name: Install GCC
run: sudo apt-get install -y build-essential
# install python
- uses: actions/setup-python@v5
with:
python-version: '3.9'
# install platformio
- name: Install PlatformIO core
run: pip install --upgrade platformio
# create test/.pio/test/ folder
- name: Create test/.pio/test folder
run: mkdir -p test/.pio/test
# run unit tests using 'test-native' environment
- name: Run Unit Tests (native)
run: pio test --project-dir ./test --environment native --junit-output-path 'test/.pio/test/native.xml'
# upload test results
- uses: test-summary/action@v2
with:
paths: "test/.pio/test/*.xml"
show: "all"
if: always()