mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 01:02:08 +00:00
26 lines
557 B
YAML
26 lines
557 B
YAML
name: Clang Format
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- '**/*.txt'
|
|
- 'thirdparty/*'
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- '**/*.txt'
|
|
- 'thirdparty/*'
|
|
workflow_dispatch:
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run clang-format
|
|
uses: jidicula/clang-format-action@v4.14.0
|
|
with:
|
|
exclude-regex: (thirdparty)
|
|
clang-format-version: 19
|