4jcraft/.github/workflows/clang-format.yml
Workflow config file is invalid. Please check your config file: yaml: line 3: did not find expected key
2026-03-29 19:52:44 -05:00

32 lines
644 B
YAML

name: Check Format (Linux, x86-64)
on: [push, pull_request]
paths:
- '**.cpp'
- '**.h'
- '**.c'
- '**.cc'
- '**.cxx'
- '**.hh'
- '**.hpp'
- '**.hxx'
- '**.inl'
- "**meson.build"
- "flake.nix"
- '.github/workflows/build-linux.yml'
jobs:
formatting-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Run clang-format style check
uses: jidicula/clang-format-action@v4.18.0
with:
# keep this in line with the flake
clang-format-version: "21"