Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffav authored Mar 5, 2021
1 parent 3be7284 commit c13abb3
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,25 @@
# action-clang-format
# C/C++ Style Guide Github Action
---
Github Action applying the LLVM clang format to C/C++ code.

This Action checks the code using [clang-format](https://releases.llvm.org/10.0.0/docs/index.html) with the default LLVM configuration.

## Features
---
* Checks C/C++ code formatting
* Supports push triggers
* Future Enhancement: support automatic formatting and commit

## Usage
---
```bash
on: push

jobs:
format:
name: clang formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: unspun/[email protected]
```

0 comments on commit c13abb3

Please sign in to comment.