-
Notifications
You must be signed in to change notification settings - Fork 157
42 lines (42 loc) · 1 KB
/
build.yml
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
name: CI Build
on: [ push, pull_request ]
env:
CI: "true"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
emacs_version:
- 28.1
- 28.2
- 29.1
- 29.2
- 29.3
- 29.4
# - snapshot FIXME disabled due to bytecode overflow errors during compilation
steps:
- name: Install Emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Install Cask
uses: conao3/setup-cask@master
with:
version: 'snapshot'
- name: Install Aspell
run: sudo apt-get install -y aspell
- name: Checkout treemacs
uses: actions/checkout@v2
with:
repository: Alexander-Miller/treemacs
path: treemacs
- name: Cask Install
run: cask --path treemacs install
- name: Checkdoc
run: make -C treemacs checkdoc
- name: Compile
run: make -C treemacs compile
- name: Test
run: make -C treemacs test