We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26d46e commit 54a69beCopy full SHA for 54a69be
.github/workflows/lint-emacs.yml
@@ -0,0 +1,31 @@
1
+name: Lint Emacs
2
+
3
+on:
4
+ push:
5
+ paths: ['**.el']
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ # continue-on-error: ${{matrix.emacs_version == 'snapshot'}}
13
14
+ strategy:
15
+ matrix:
16
+ emacs_version: ['snapshot']
17
18
+ steps:
19
+ - name: Set up Emacs
20
+ uses: purcell/setup-emacs@master
21
+ with:
22
+ version: ${{matrix.emacs_version}}
23
24
+ - name: Install Eldev
25
+ run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
26
27
+ - name: Check out the source code
28
+ uses: actions/checkout@v2
29
30
+ - name: Lint the project
31
+ run: eldev -dtT -C compile --warnings-as-errors
0 commit comments