Skip to content

Commit b85c5f5

Browse files
committed
Add ci
1 parent 24d3e3e commit b85c5f5

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/test.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
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+
with:
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

Comments
 (0)