Skip to content

Commit b6df594

Browse files
committed
add test
1 parent ba18132 commit b6df594

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/test.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
test:
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
os: [ubuntu-latest, macos-latest, windows-latest]
21+
emacs-version:
22+
- 27.2
23+
- 28.2
24+
- snapshot
25+
26+
steps:
27+
- uses: actions/checkout@v3
28+
29+
- uses: jcs090218/setup-emacs@master
30+
with:
31+
version: ${{ matrix.emacs-version }}
32+
33+
- uses: emacs-eask/setup-eask@master
34+
with:
35+
version: 'snapshot'
36+
37+
- name: Run tests
38+
run:
39+
make ci

0 commit comments

Comments
 (0)