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 2323 version : ${{ matrix.emacs-version }}
2424 - name : Install Gnuplot
2525 run : sudo apt update && sudo apt install gnuplot
26+ - name : Install Compat
27+ run : emacs --eval "(progn (package-refresh-contents) (package-install 'compat))"
2628 - 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 \
1010
1111default : compile
1212
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
1515
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
2118
2219clean :
2320 rm -f * .elc
You can’t perform that action at this time.
0 commit comments