diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-09 12:34:32 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-15 15:08:00 +0300 |
commit | e0f03c99f8cd9db8ab5a97fd5656042a160f8955 (patch) | |
tree | fb6707a4bfc10865220139592647339983cb5a07 /README.md | |
download | clang-format-e0f03c99f8cd9db8ab5a97fd5656042a160f8955.tar.gz clang-format-e0f03c99f8cd9db8ab5a97fd5656042a160f8955.zip |
initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..eff4f5f --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +clang-format +============ + +[![Test](https://github.com/egor-tensin/clang-format/actions/workflows/test.yml/badge.svg)](https://github.com/egor-tensin/clang-format/actions/workflows/test.yml) + +This GitHub action runs `clang-format` on your C/C++ source files and shows the +diff. + +Use it in your workflow like this: + + - name: clang-format + uses: egor-tensin/clang-format@v1 + +API +--- + +| Input | Value | Default | Description +| ------- | ------- | ------- | ----------- +| version | *empty* | ✓ | Use `clang-format`. +| | *any* | | Use `clang-format-VERSION`. +| style | file | ✓ | Use .clang-format. +| | *any* | | `-style=STYLE` (Microsoft, LLVM, etc.). +| exclude | *empty* | ✓ | Don't exclude any files. +| | *any* | | List of files and directories to exclude, separated by a colon `:`. + +| Output | Description +| ------ | ----------- +| diff | Diff between the original and the properly formatted files. + +License +------- + +Distributed under the MIT License. +See [LICENSE.txt] for details. + +[LICENSE.txt]: LICENSE.txt |