8000 GitHub - TiannaBlanda/clang-format-action: A github action to run clang-format on all C/C++ sources in a repository
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

TiannaBlanda/clang-format-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

!Clang format Github action

This project can be used to run clang-format on every push using Github actions.

!# Usage

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: antoinealb/clang-format-action@clang9
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

About

A github action to run clang-format on all C/C++ sources in a repository

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 71.1%
  • Dockerfile 28.9%
0