-
Notifications
You must be signed in to change notification settings - Fork 12
44 lines (37 loc) · 863 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 27.2
- 28.1
- snapshot
steps:
- uses: actions/checkout@v2
- uses: jcs090218/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: emacs-eask/setup-eask@master
with:
version: 'snapshot'
- name: Print emacs version
run: |
emacs --version
- run: echo "$HOME/.cask/bin" >> $GITHUB_PATH
- run: make install
- run: make compile
- run: make lint
- run: make test