Skip to content

Commit

Permalink
ci/lint: Try fixing getting source files
Browse files Browse the repository at this point in the history
  • Loading branch information
obiwac committed Nov 5, 2024
1 parent e6c2563 commit f55c555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
version: latest
platform: x64
- name: Get all source files
run: echo "SRC='$(find src -name "*.[ch]" -o -path src/flamingo -prune -type f)'" >> $GITHUB_ENV
run: echo "SRC='$(find src -name "*.[ch]" -print0 -o -path src/flamingo -prune -type f | xargs -0 echo)'" >> $GITHUB_ENV
- name: Build (with LSP output)
run: intercept-build sh build.sh
- name: Run clang-tidy
Expand Down

0 comments on commit f55c555

Please sign in to comment.