Skip to content

Commit a268db4

Browse files
committed
Configure GitHub actions
1 parent 9079bc3 commit a268db4

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Run test suite
2+
on: [push, pull_request]
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
emacs_version:
10+
- '25.1'
11+
- '26.1'
12+
- '27.1'
13+
14+
steps:
15+
- uses: purcell/setup-emacs@master
16+
with:
17+
version: ${{ matrix.emacs_version }}
18+
- uses: conao3/setup-cask@master
19+
20+
- uses: actions/checkout@v2
21+
22+
- name: Test
23+
run: |
24+
cask install
25+
cask exec ert-runner
26+
27+
- name: Test after byte-compilation
28+
run: |
29+
cask build
30+
cask exec ert-runner

0 commit comments

Comments
 (0)