File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 7
7
paths : ['**.el']
8
8
9
9
jobs :
10
- test :
10
+ build :
11
11
runs-on : ubuntu-latest
12
12
# continue-on-error: ${{matrix.emacs_version == 'snapshot'}}
13
13
30
30
- name : Lint the project
31
31
run : eldev -dtT -C compile --warnings-as-errors
32
32
33
+ test :
34
+
35
+ runs-on : ubuntu-latest
36
+ # continue-on-error: ${{matrix.emacs_version == 'snapshot'}}
37
+
38
+ strategy :
39
+ matrix :
40
+ emacs_version : ['snapshot']
41
+
42
+ steps :
43
+ - name : Set up Emacs
44
+ uses : purcell/setup-emacs@master
45
+ with :
46
+ version : ${{matrix.emacs_version}}
47
+
48
+ - name : Install Eldev
49
+ run : curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
50
+
51
+ - name : Check out the source code
52
+ uses : actions/checkout@v2
53
+
33
54
- name : Run tests
34
55
run : make test
You can’t perform that action at this time.
0 commit comments