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 5adbd2c commit 09cacdeCopy full SHA for 09cacde
.github/workflows/test.yml
@@ -0,0 +1,43 @@
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
+ - 26.3
23
+ - 27.2
24
+ - 28.2
25
+ - snapshot
26
27
+ steps:
28
+ - uses: actions/checkout@v3
29
30
+ - uses: jcs090218/setup-emacs@master
31
+ with:
32
+ version: ${{ matrix.emacs-version }}
33
34
+ - uses: emacs-eask/setup-eask@master
35
36
+ version: 'snapshot'
37
38
+ - name: Run tests
39
+ run: |
40
+ eask clean all
41
+ eask package
42
+ eask install
43
+ eask compile
0 commit comments