File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ commands:
48
48
steps :
49
49
- run :
50
50
name : Run Elisp-lint
51
- command : eldev lint
51
+ command : eldev lint -c
52
52
- run :
53
53
name : Byte-compile .el files
54
54
command : eldev -dtT compile --warnings-as-errors
@@ -106,7 +106,7 @@ jobs:
106
106
- run :
107
107
name : Install Emacs latest
108
108
command : |
109
- choco install emacs
109
+ choco install emacs -y
110
110
- setup-windows
111
111
- test
112
112
Original file line number Diff line number Diff line change 1
- ; -*- mode : emacs-lisp ; lexical-binding : t ; no-byte-compile : t -*-
1
+ ; -*- mode : emacs-lisp ; lexical-binding : t -*-
2
2
3
- (eldev-require-version " 0.6 " )
3
+ (eldev-require-version " 1.8.2 " )
4
4
5
5
(eldev-use-package-archive 'gnu )
6
+
6
7
; ; For compatibility; e.g. with MELPA Stable one test fails.
7
8
(eldev-use-package-archive 'melpa-unstable )
8
9
Original file line number Diff line number Diff line change 7
7
8
8
# Remove byte-compilation artifacts, which can alter the result of the test suite:
9
9
clean :
10
- cd ~ /.emacs.d ; find . -type f -name " *.elc " -exec rm {} +
10
+ eldev clean
11
11
12
12
# You can find a generic `eldev` installation script in https://github.com/emacs-eldev/eldev/blob/master/webinstall/eldev
13
13
# (Don't use the one defined for CircleCI in your local machine)
14
14
15
15
lint : clean
16
- eldev lint
16
+ eldev lint -c
17
17
18
18
# Checks for byte-compilation warnings.
19
19
compile : clean
You can’t perform that action at this time.
0 commit comments