We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81592f9 commit 7395550Copy full SHA for 7395550
.github/workflows/test.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ${{matrix.os}}
8
9
+ strategy:
10
+ matrix:
11
+ os: [macos-latest]
12
+ emacs_version: ['26.3', '27.2']
13
14
+ steps:
15
+ - name: Set up Emacs
16
+ uses: purcell/setup-emacs@master
17
+ with:
18
+ version: ${{matrix.emacs_version}}
19
20
+ - name: Install Eldev
21
+ run: curl -fsSL https://raw.githubusercontent.com/doublep/eldev/0.10.3/webinstall/github-eldev | sh
22
23
+ - name: Check out the source code
24
+ uses: actions/checkout@v2
25
26
+ - name: Test the project
27
+ run: |
28
+ eldev -p -dtT test
0 commit comments