mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-08-03 04:06:22 -04:00
Add github action with basic CI that builds
Signed-off-by: Daniel Lublin <daniel@lublin.se>
This commit is contained in:
parent
b7d0698e1b
commit
9a6a790715
6 changed files with 152 additions and 5 deletions
|
@ -1,6 +1,9 @@
|
|||
# Uses ../.clang-format
|
||||
FMTFILES=main.c
|
||||
.PHONY: fmt
|
||||
fmt:
|
||||
# Uses ../.clang-format
|
||||
clang-format --dry-run --ferror-limit=0 $(FMTFILES)
|
||||
clang-format --verbose -i $(FMTFILES)
|
||||
.PHONY: checkfmt
|
||||
checkfmt:
|
||||
clang-format --dry-run --ferror-limit=0 --Werror $(FMTFILES)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue