Skip to content

Merge pull request #150 from games-on-whales/fix-146 #278

Merge pull request #150 from games-on-whales/fix-146

Merge pull request #150 from games-on-whales/fix-146 #278

Workflow file for this run

name: Run clang-format Linter
on:
push:
paths-ignore:
- "docs/**"
- "docker/**"
- ".github/**"
pull_request:
paths:
- "docs/**"
- "docker/**"
- ".github/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DoozyX/[email protected]
with:
source: 'src'
exclude: 'src/rust'
extensions: 'h,hpp,cpp,c'
clangFormatVersion: 18
inplace: True
- uses: EndBug/add-and-commit@v9
with:
committer_name: GitHub Actions
committer_email: [email protected]
message: 'Committing clang-format changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}