Skip to content

Commit b5734ad

Browse files
author
JeromeGalan
authored
Merge pull request #97 from Luos-io/rc-2.0.0
Rc 2.0.0
2 parents fd04131 + b342252 commit b5734ad

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+8968
-1177
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ assignees: nicolas-rabault
1111
A clear and concise description of what the bug is.
1212

1313
**Network configuration**
14-
- Add the routing table or list the nodes and their modules
14+
- Add the routing table or list the nodes and their services
1515
- Power input configuration
1616

1717
**How to reproduce the bug**

.github/workflows/build.yml

+9
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,12 @@ jobs:
100100
# NUCLEO-G431KB
101101
platformio run -d Projects/NUCLEO-G431KB/Button
102102
platformio run -d Projects/NUCLEO-G431KB/Gate_SerialCom
103+
104+
- name: Run PlatformIO Unit Tests
105+
env:
106+
PLATFORMIO_LIB_EXTRA_DIRS: ${{ matrix.pio_lib_path }}
107+
if: ${{ runner.os == 'Windows' }}
108+
run: |
109+
cd ../Luos/
110+
platformio run -t clean
111+
platformio test -e native -i CodeCoverage --verbose

.github/workflows/dev-build.yml

+9
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,12 @@ jobs:
127127
# NUCLEO-G431KB
128128
platformio run -d Projects/NUCLEO-G431KB/Button
129129
platformio run -d Projects/NUCLEO-G431KB/Gate_SerialCom
130+
131+
- name: Run PlatformIO Unit Tests
132+
env:
133+
PLATFORMIO_LIB_EXTRA_DIRS: ${{ matrix.pio_lib_path }}
134+
if: ${{ runner.os == 'Windows' }}
135+
run: |
136+
cd ../Luos/
137+
platformio run -t clean
138+
platformio test -e native -i CodeCoverage --verbose

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
.nosync
22
.DS_Store
3+
.gcda
4+
.gcno
5+
.info
6+
.gcov
37
**/.DS_Store
48
*.icloud
59
**/*.icloud
6-
.vscode/
10+
.vscode/
11+
.pio/

0 commit comments

Comments
 (0)