mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-01-20 15:04:32 +01:00
24 lines
388 B
YAML
24 lines
388 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
|
|
cmake ..
|
|
cmake --build . --target=check-format
|
|
|
|
|
|
|
|
|
|
|
|
|