mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-01-31 15:04:56 +01:00
22 lines
479 B
YAML
22 lines
479 B
YAML
name: test-formatting
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test-formatting:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: check if files are formatted
|
|
# find all examples in build/examples and run them
|
|
run: |
|
|
pwd
|
|
mkdir build
|
|
cd build
|
|
find \( -name "*.cpp" -o -name "*.hpp" \) -not -path "./build/*" | xargs -I {} -n 1 -P 10 bash -c "clang-format -i -style=\"file:.clang-format\" {}"
|
|
|
|
|
|
|
|
|
|
|