Skip to content

Commit

Permalink
Add Makefile check task.
Browse files Browse the repository at this point in the history
* Makefile (check): Add a task.
* .editorconfig: Add EditorConfig settings for Makefile.
  • Loading branch information
gemmaro committed Aug 5, 2024
1 parent a988a09 commit ff50886
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ charset = utf-8
indent_style = space
indent_size = 2
max_line_length = 100

[Makefile]
indent_style = tab
indent_size = 8
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
check:
emacs --batch \
--load ert \
--load rbs-mode.el \
--load rbs-mode-test.el \
--funcall ert-run-tests-batch-and-exit
.PHONY: check

0 comments on commit ff50886

Please sign in to comment.