-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (28 loc) · 907 Bytes
/
test.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
name: Test with Unity
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up caching
uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Run the desktop tests with Unity
run: pio test -e native_debug -e native_release
# Not yet implemented (will have to use a simulator in CI, see: https://docs.platformio.org/en/latest/advanced/unit-testing/simulators/qemu.html)
#- name: Run the board tests with Unity
# run: pio test -e debug -e release