Skip to content

Commit

Permalink
update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Davidson-Souza committed Sep 4, 2024
1 parent 578e107 commit 5f58f49
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,16 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: make
run: autoreconf -fi && ./configure && make

- name: make test
run: autoreconf -fi && ./configure && make check && ./test_flat_file && ./test_forest

run: autoreconf -fi
run: ./configure
run: make check
run: contrib/run_tests.sh

- name: linting
run: for file in $(find -name *.[c,h,hpp]); do clang-format --dry-run --Werror $file; done

0 comments on commit 5f58f49

Please sign in to comment.