You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
clang-format Code Formatter
v1.1
This project can be used to run clang-format on every push using Github actions.
For a more detailed installation guide look there
Create a formatter.yml
file in .github/workflows/
.
Paste this code into the file:
on: push
name: clang-format Code Formatter
jobs:
lint:
name: clang-format Code Formatter
runs-on: ubuntu-latest
steps:
- name: Clang Code Formatter
uses: ivanludvig/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}