Skip to content

Commit

Permalink
[fix] : routes to make
Browse files Browse the repository at this point in the history
  • Loading branch information
nemocazin committed Aug 1, 2024
1 parent 969e52b commit c731082
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
- name: Build main and tests
run: |
mkdir -p ../../Code/build
make main -C ../../Code/
make tests -C ../../Code/
mkdir -p Code/build
make main -C Code/
make tests -C Code/
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
- name: Lint source code
run: |
clang-format -i ../../Code/src/*.c
clang-format -i ../../Code/tests/*.c
clang-format -i Code/src/*.c
clang-format -i Code/tests/*.c
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
sudo apt-get -y upgrade
- name: Build tests
run: make tests -C ../../Code/
run: make tests -C Code/

- name: Run tests
run: |
chmod 777 Code/build/tri_tests
./../../Code/build/tri_tests
./Code/build/tri_tests

0 comments on commit c731082

Please sign in to comment.