Some checks failed
Check code formatting / Check-C-Format (push) Failing after 1m4s
Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
14 lines
302 B
YAML
14 lines
302 B
YAML
name: Check code formatting
|
|
on: [push]
|
|
|
|
jobs:
|
|
Check-C-Format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Run clang format
|
|
run: |
|
|
cmake software -B build
|
|
cmake --build build -- check-format
|