All checks were successful
Check code formatting / Check-C-Format (push) Successful in 6s
Signed-off-by: Matthias Blankertz <matthias@blankertz.org>
16 lines
323 B
YAML
16 lines
323 B
YAML
name: Check code formatting
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
Check-C-Format:
|
|
runs-on: ubuntu-22.04-full
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Run clang format
|
|
run: |
|
|
cmake software -B build
|
|
cmake --build build -- check-format
|