-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (60 loc) · 1.43 KB
/
CI.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# CI.yaml --- Github action workflow definition
---
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
check:
strategy:
fail-fast: false
matrix:
emacs_version:
- 29.1
- 29.2
- 29.3
- snapshot
name: Emacs ${{ matrix.emacs_version }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install GCC
uses: egor-tensin/setup-gcc@v1
with:
version: latest
platform: x64
- name: Install Emacs
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Cache Cask packages
uses: actions/cache@v4
id: cache-cask-packages
with:
path: .cask
key: cache-cask-packages-000
- name: Cache Cask executable
uses: actions/cache@v4
id: cache-cask-executable
with:
path: ~/.cask
key: cache-cask-executable-000
- name: Install Cask
uses: cask/setup-cask@master
if: steps.cache-cask-executable.outputs.cache-hit != 'true'
with:
version: snapshot
- name: Update PATH
run: echo "$HOME/.cask/bin" >> $GITHUB_PATH
- name: Compile grammar
run: make grammar
- name: Byte Compile
run: make compile
- name: Run Tests
run: make check
- name: Run Lint
run: make lint