summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 6b016cf6be5e0a856222c8a06c58bf18d36a0617 (plain)
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
name: CI

on: [push, pull_request]

jobs:
    unix-test:
        runs-on: ubuntu-latest
        strategy:
            max-parallel: 6
            matrix:
                emacs-version:
                    - 26.3
                    - 27.2
                    # - snapshot

        steps:
            - uses: actions/checkout@v2

            - uses: purcell/setup-emacs@master
              with:
                  version: ${{ matrix.emacs-version }}

            - uses: conao3/setup-cask@master
              with:
                  version: 0.8.4

            - name: Run tests
              run: |
                make test