File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 3131 with :
3232 version : ${{ matrix.emacs_version }}
3333
34- - name : Compile
35- run : |
36- ./scripts/compile.sh
37-
3834 - name : Lint
3935 run : |
4036 ./scripts/lint.sh
4339 run : |
4440 ./scripts/test.sh
4541
42+ - name : Compile
43+ run : |
44+ ./scripts/compile.sh
45+
4646 - name : Check documentation
4747 run : |
4848 emacs -Q --batch \
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
99echo " Project root: $PROJECT_ROOT "
1010echo " "
1111
12+ # Clean up old byte-compiled files
13+ if compgen -G " $PROJECT_ROOT /*.elc" > /dev/null; then
14+ echo " Cleaning up old byte-compiled files..."
15+ rm -f " $PROJECT_ROOT " /* .elc
16+ fi
17+
1218echo " Running ERT tests..."
1319(cd " $PROJECT_ROOT " && emacs -Q --batch \
1420 --eval " (add-to-list 'load-path \" .\" )" \
You can’t perform that action at this time.
0 commit comments