mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-05 22:22:54 +00:00
24 lines
489 B
YAML
24 lines
489 B
YAML
name: Clang-Format (Linux x86/64)
|
|
|
|
on:
|
|
push:
|
|
- "**.cpp"
|
|
- "**.h"
|
|
- "**.meson.build"
|
|
- ".github/workflows/*"
|
|
|
|
jobs:
|
|
formatting-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
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"
|