File tree Expand file tree Collapse file tree 1 file changed +24
-26
lines changed Expand file tree Collapse file tree 1 file changed +24
-26
lines changed Original file line number Diff line number Diff line change 1
- name : GitHub actions CI
1
+ name : CI
2
2
3
- on : [push]
3
+ on : [push, pull_request ]
4
4
5
5
jobs :
6
- build :
7
- runs-on : ubuntu-latest
8
- strategy :
9
- fail-fast : false
10
- matrix :
11
- rust_version : [stable]
12
- emacs_version :
13
- - 25.3
14
- - 26.3
15
- - 27.2
16
- - snapshot
6
+ unix-test :
7
+ runs-on : ubuntu-latest
8
+ strategy :
9
+ max-parallel : 6
10
+ matrix :
11
+ emacs-version :
12
+ - 26.3
13
+ - 27.2
14
+ - snapshot
17
15
18
- env :
19
- EMACS_VERSION : ${{ matrix.emacs_version }}
20
- steps :
21
- - uses : hecrj/setup-rust-action@v1
22
- with :
23
- rust-version : ${{ matrix.rust_version }}
24
- - uses : purcell/setup-emacs@master
25
- with :
26
- version : ${{ matrix.emacs_version }}
16
+ steps :
17
+ - uses : actions/checkout@v2
27
18
28
- - uses : actions/checkout@v1
19
+ - uses : purcell/setup-emacs@master
20
+ with :
21
+ version : ${{ matrix.emacs-version }}
22
+
23
+ - uses : conao3/setup-cask@master
24
+ with :
25
+ version : 0.8.4
26
+
27
+ - name : Run tests
28
+ run : |
29
+ make test
29
30
30
- - name : Run tests
31
- run : |
32
- make test
You can’t perform that action at this time.
0 commit comments