Skip to content

Commit 87770cb

Browse files
committed
add test
1 parent 15f5d25 commit 87770cb

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

.github/workflows/test.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+
continue-on-error: ${{ matrix.experimental }}
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
os: [ubuntu-latest, macos-latest, windows-latest]
22+
emacs-version:
23+
- 28.2
24+
- 29.4
25+
experimental: [false]
26+
include:
27+
- os: ubuntu-latest
28+
emacs-version: snapshot
29+
experimental: true
30+
- os: macos-latest
31+
emacs-version: snapshot
32+
experimental: true
33+
- os: windows-latest
34+
emacs-version: snapshot
35+
experimental: true
36+
37+
steps:
38+
- uses: actions/checkout@v4
39+
40+
- uses: jcs090218/setup-emacs@master
41+
with:
42+
version: ${{ matrix.emacs-version }}
43+
44+
- uses: emacs-eask/setup-eask@master
45+
with:
46+
version: 'snapshot'
47+
48+
- name: Run tests
49+
run:
50+
make ci

0 commit comments

Comments
 (0)