Skip to content

Commit 29a87d1

Browse files
committed
Add workflow
1 parent 580713c commit 29a87d1

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.github/workflows/test.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
unix-test:
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest, macos-latest]
17+
emacs_version:
18+
- 27.1
19+
- snapshot
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
24+
- uses: purcell/setup-emacs@master
25+
with:
26+
version: ${{ matrix.emacs_version }}
27+
28+
- name: Run tests
29+
run: 'make ci'
30+
31+
windows-test:
32+
runs-on: windows-latest
33+
strategy:
34+
matrix:
35+
emacs-version:
36+
- 27.1
37+
- snapshot
38+
39+
steps:
40+
- uses: actions/checkout@v2
41+
42+
- uses: jcs090218/setup-emacs-windows@master
43+
with:
44+
version: ${{ matrix.emacs-version }}
45+
46+
- name: Run tests
47+
run: 'make ci'

0 commit comments

Comments
 (0)