Skip to content

Commit 09cacde

Browse files
committed
Add workflow
1 parent 5adbd2c commit 09cacde

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/test.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
- 26.3
23+
- 27.2
24+
- 28.2
25+
- snapshot
26+
27+
steps:
28+
- uses: actions/checkout@v3
29+
30+
- uses: jcs090218/setup-emacs@master
31+
with:
32+
version: ${{ matrix.emacs-version }}
33+
34+
- uses: emacs-eask/setup-eask@master
35+
with:
36+
version: 'snapshot'
37+
38+
- name: Run tests
39+
run: |
40+
eask clean all
41+
eask package
42+
eask install
43+
eask compile

0 commit comments

Comments
 (0)