Skip to content

Commit 2e1bc7d

Browse files
committed
Add checkdoc and lint commands
1 parent a202d14 commit 2e1bc7d

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ SHELL := /usr/bin/env bash
33
EMACS ?= emacs
44
EASK ?= eask
55

6-
TEST-FILES := $(shell ls test/eask-mode-*.el)
7-
86
.PHONY: clean checkdoc lint package install compile test
97

108
ci: clean package install compile
@@ -23,7 +21,15 @@ compile:
2321

2422
test:
2523
@echo "Testing..."
26-
$(EASK) exec ert-runner -L . $(LOAD-TEST-FILES) -t '!no-win' -t '!org'
24+
$(EASK) ert ./test/*.el
25+
26+
checkdoc:
27+
@echo "Run checkdoc..."
28+
$(EASK) checkdoc
29+
30+
lint:
31+
@echo "Run package-lint..."
32+
$(EASK) lint
2733

2834
clean:
2935
$(EASK) clean-all

0 commit comments

Comments
 (0)