Skip to content

Commit 26cd81d

Browse files
committed
Use makem.sh in CI
Currently, we need the --compile-batch option because compiling the files individually fails on Emacs 25 (I think due to subr-x macros not being loaded at startup).
1 parent 2086702 commit 26cd81d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
- name: Byte compilation
5959
run: emacs --eval "(setq byte-compile-error-on-warn (>= emacs-major-version 26))" -L . --batch -f batch-byte-compile ./*.el
6060
- name: Tests
61-
run: nix shell ${{ matrix.ledger_version || 'nixpkgs#ledger' }} --print-build-logs -c make -C test
61+
run: nix shell ${{ matrix.ledger_version || 'nixpkgs#ledger' }} --print-build-logs -c ./makem.sh test -vv --compile-batch
6262
# This is currently for information only, since a lot of docstrings need fixing up
6363
- name: Checkdoc
64-
run: make -C test checkdoc || true
64+
run: make lint-checkdoc || true
65+
# TODO: Run other makem.sh lints

0 commit comments

Comments
 (0)