feat: add CI
All checks were successful
CI / build (26.3) (push) Successful in 3m7s
CI / build (27.2) (push) Successful in 3m55s
CI / build (28.2) (push) Successful in 3m32s
CI / build (29.1) (push) Successful in 3m39s
CI / build (snapshot) (push) Successful in 2m50s

This commit is contained in:
2023-12-06 19:49:59 +01:00
parent 9942e063b3
commit 49b6ca3efe
5 changed files with 106 additions and 9 deletions

34
Makefile Normal file
View File

@@ -0,0 +1,34 @@
EMACS ?= emacs
EASK ?= eask
.PHONY: clean package install compile test checkdoc lint
ci: clean package install compile checkdoc lint
package:
@echo "Packaging..."
$(EASK) package
install:
@echo "Installing..."
$(EASK) install
compile:
@echo "Compiling..."
$(EASK) compile
test:
@echo "Testing..."
$(EASK) install-deps --dev
$(EASK) test ert ./test/*.el
checkdoc:
@echo "Checking documentation..."
$(EASK) lint checkdoc --strict
lint:
@echo "Linting..."
$(EASK) lint package
clean:
$(EASK) clean all