Skip to content

Commit d9291de

Browse files
authored
Merge pull request #11 from wenzeslaus/patch-1
Add Run locally section to README
2 parents 92a4e4a + ff1f715 commit d9291de

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,18 @@ jobs:
6565
clangFormatVersion: 9
6666
style: chromium
6767
```
68+
69+
## Run locally
70+
71+
Install Docker and then run:
72+
73+
```bash
74+
docker build -t clang-format-lint github.com/DoozyX/clang-format-lint-action
75+
```
76+
77+
When the image is built, run the linting:
78+
79+
```bash
80+
docker run -it --rm --workdir /src -v $(pwd):/src clang-format-lint \
81+
--clang-format-executable /clang-format/clang-format9 -r --exclude .git *.h *.c *.hpp *.cpp
82+
```

0 commit comments

Comments
 (0)