-
Notifications
You must be signed in to change notification settings - Fork 4
72 lines (65 loc) · 1.76 KB
/
test.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
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
name: CI
on:
push:
paths:
- '**.el'
- '.github/**'
- 'Eldev'
pull_request:
paths:
- '**.el'
- '.github/**'
- 'Eldev'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
emacs_version:
- 27.2
# - 27.1
- 26.3
# - 26.2
# - 26.1
- 25.3
# - 25.2
# - 25.1
- 24.5
- 24.4
- snapshot
env:
# The test suite uses a macro that can't be debugged properly in
# versions lower than 27, so we disable coverage on those
# versions.
coveralls_skip_versions: 24.4 24.5 25.3 26.3
steps:
- name: Set up Emacs
uses: purcell/setup-emacs@master
with:
version: ${{matrix.emacs_version}}
- name: Install Eldev
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
- name: Check out the source code
uses: actions/checkout@v2
- name: Install Elisp dependencies
run: eldev prepare test
- name: Run the test suite
run: |
eldev -p -dtT test
- name: Run the test suite in source mode (for undercover)
if: ${{ ! contains(env.coveralls_skip_versions, matrix.emacs_version) }}
env:
COVERALLS_FLAG_NAME: Emacs ${{ matrix.emacs_version }}
COVERALLS_PARALLEL: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
eldev -s -dtT test
finalize:
runs-on: ubuntu-latest
if: always()
needs: test
steps:
- name: Finalize Coveralls
run: |
curl "https://coveralls.io/webhook?repo_name=$GITHUB_REPOSITORY&repo_token=${{ secrets.GITHUB_TOKEN }}" -d "payload[build_num]=$GITHUB_RUN_NUMBER&payload[status]=done"