Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunix00 authored Jul 4, 2024
1 parent 54b3b81 commit fb56b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: build the app
run: mkdir build && cd build && cmake .. && cmake --build .
- name: run the tests
run: ctest --test-dir build/ -V
run: ./build/tests

build-clang:

Expand All @@ -30,4 +30,4 @@ jobs:
- name: build the app
run: mkdir build && cd build && export CXX=clang++-12 && export CC=clang-12 && cmake .. && cmake --build .
- name: run the tests
run: ctest --test-dir build/ -V
run: ./build/tests

0 comments on commit fb56b9d

Please sign in to comment.