aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorJustin Burkett2020-02-06 21:44:46 -0500
committerJustin Burkett2020-02-06 21:44:46 -0500
commita66bf9336a2499d1231d460ff35c56db1df477ac (patch)
treeda4494b0adbbfec62cbcd9076bf727bed348927a /.github/workflows
parentfcc509f49352245dc8ca26054585b0d8ccccc975 (diff)
downloademacs-a66bf9336a2499d1231d460ff35c56db1df477ac.tar.gz
emacs-a66bf9336a2499d1231d460ff35c56db1df477ac.zip
Try purcell's workflow action
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 00000000000..3af184721c4
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,33 @@
1name: which-key-test-workflow
2on:
3 pull-request:
4 push:
5 branches:
6 - master
7
8jobs:
9 build:
10 runs-on: [ubuntu-latest, macos-latest]
11 strategy:
12 matrix:
13 emacs_version:
14 - 24.1
15 - 24.2
16 - 24.3
17 - 24.4
18 - 24.5
19 - 25.1
20 - 25.2
21 - 25.3
22 - 26.1
23 - 26.2
24 - 26.3
25 - snapshot
26 steps:
27 - uses: purcell/setup-emacs@master
28 with:
29 version: ${{ matrix.emacs_version }}
30
31 - uses: actions/checkout@v2
32 - name: Run tests
33 run: 'emacs -Q -batch -L . -l which-key-tests.el -f ert-run-tests-batch-and-exit'