Skip to content

Commit 46af9d2

Browse files
authored
Modify test step to execute unit tests
Updated the test execution step to run unit tests directly.
1 parent 72b618a commit 46af9d2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
run: make
1919

2020
- name: Run Tests
21-
# Only keep this if your Makefile actually has a 'check' target
22-
run: make check
21+
run: |
22+
chmod +x ./unit_tests
23+
./unit_tests
2324

0 commit comments

Comments
 (0)