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 24d3e3e commit b85c5f5Copy full SHA for b85c5f5
.github/workflows/test.yml
@@ -0,0 +1,38 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ os: [ubuntu-latest, macos-latest, windows-latest]
18
+ emacs-version:
19
+ - 28.1
20
+ - snapshot
21
22
+ steps:
23
+ - uses: actions/checkout@v3
24
25
+ - uses: jcs090218/setup-emacs@master
26
+ with:
27
+ version: ${{ matrix.emacs-version }}
28
29
+ - uses: emacs-eask/setup-eask@master
30
31
+ version: 'snapshot'
32
33
+ - name: Set workaround env var
34
+ run: |
35
+ echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV
36
37
+ - name: Run tests
38
+ run: 'make ci'
0 commit comments