We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba18132 commit b6df594Copy full SHA for b6df594
.github/workflows/test.yml
@@ -0,0 +1,39 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ workflow_dispatch:
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ test:
16
+ runs-on: ${{ matrix.os }}
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ os: [ubuntu-latest, macos-latest, windows-latest]
21
+ emacs-version:
22
+ - 27.2
23
+ - 28.2
24
+ - snapshot
25
26
+ steps:
27
+ - uses: actions/checkout@v3
28
29
+ - uses: jcs090218/setup-emacs@master
30
+ with:
31
+ version: ${{ matrix.emacs-version }}
32
33
+ - uses: emacs-eask/setup-eask@master
34
35
+ version: 'snapshot'
36
37
+ - name: Run tests
38
+ run:
39
+ make ci
0 commit comments