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