Skip to content

Commit 9ec14af

Browse files
authored
Run lint on CI (#2)
1 parent 5d600ac commit 9ec14af

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["**"]
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
emacs-version:
16+
- 24.5
17+
- 25.3
18+
- 26.3
19+
- 27.2
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: purcell/setup-emacs@master
23+
with:
24+
version: ${{ matrix.emacs-version }}
25+
- uses: leotaku/elisp-check@master

0 commit comments

Comments
 (0)