Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add comment to check CI setup #1

Closed
wants to merge 15 commits into from
Closed
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
-G "Unix Makefiles" \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_C_FLAGS='--coverage -Wall -Wextra -DNDEBUG'
# make -C build/ all
make -C test/unit-test/build/ all
- name: Test
run: |
cd build/
cd test/unit-test/build/
ctest -E system --output-on-failure
cd ..
- name: Coverage
Expand Down
2 changes: 2 additions & 0 deletions FreeRTOS_ARP.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
* http://www.FreeRTOS.org
*/

/* Comment to check the CI setup. */

/* Standard includes. */
#include <stdint.h>
#include <stdio.h>
Expand Down