Skip to content

Commit

Permalink
fix(ci): update source file glob
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiDood committed Sep 24, 2024
1 parent e5ab8a2 commit f09aa54
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ jobs:
version: '0.97.1'
- name: Check Format
shell: nu {0}
run: clang-format --dry-run ...(glob 'src/*.c')
run: clang-format --dry-run ...(glob 'src/**/.{c,h}')
- name: Configure CMake
run: cmake --preset=default .
- name: Check Lints
shell: nu {0}
run: clang-tidy --quiet -p .build ...(glob 'src/*.c')
run: clang-tidy --quiet -p .build ...(glob 'src/**/.{c,h}')
- name: Build with Make
run: cmake --build .build
- name: Run Unit Tests
run: ctest --preset=default

0 comments on commit f09aa54

Please sign in to comment.