File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 21
21
- uses : purcell/setup-emacs@master
22
22
with :
23
23
version : ${{ matrix.emacs-version }}
24
+ - name : Install Compat
25
+ run : emacs --batch --eval "(progn (package-refresh-contents) (package-install 'compat))"
24
26
- name : Install Gnuplot
25
27
run : sudo apt update && sudo apt install gnuplot
26
- - name : Install Compat
27
- run : emacs --eval "(progn (package-refresh-contents) (package-install 'compat))"
28
28
- name : Run tests
29
29
run : make && make test
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ LOAD = -l gnuplot \
11
11
default : compile
12
12
13
13
test :
14
- $(EMACS ) --batch -L . $(LOAD ) -f ert-run-tests-batch-and-exit
14
+ $(EMACS ) --batch -L . -f package-initialize $(LOAD ) -f ert-run-tests-batch-and-exit
15
15
16
16
compile :
17
- $(EMACS ) --batch -L . -f batch-byte-compile gnuplot-* .el
17
+ $(EMACS ) --batch -L . -f package-initialize -f batch-byte-compile gnuplot-* .el
18
18
19
19
clean :
20
20
rm -f * .elc
You can’t perform that action at this time.
0 commit comments