We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16512d4 commit 28f1105Copy full SHA for 28f1105
.github/workflows/unit-tests.yml
@@ -25,13 +25,17 @@ jobs:
25
- name: Checkout
26
uses: actions/checkout@v2
27
28
+ - name: Install valgrind
29
+ run: |
30
+ sudo apt-get install valgrind
31
+
32
- name: Run unit tests
33
run: |
34
mkdir "$BUILD_PATH"
35
cd "$BUILD_PATH"
36
cmake ..
37
make
- bin/testArduinoIoTCloud
38
+ valgrind --leak-check=yes bin/testArduinoIoTCloud
39
40
- name: Check code coverage
41
0 commit comments