These workflows triggered on both push and pull_request with no branch filter, so every push to a PR branch ran each workflow twice. Restrict the push trigger to master; pull_request already covers PR branches.
22 lines
460 B
YAML
22 lines
460 B
YAML
name: clang-format
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-format-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: RafikFarhad/clang-format-github-action@v6
|
|
name: clang-format
|
|
with:
|
|
sources: "src/**/*.hpp,src/**/*.cpp"
|
|
style: "file"
|