Skip to content

Commit 28c26c6

Browse files
committed
Switch from travis-ci to github actions
1 parent 44829fa commit 28c26c6

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
emacs_version:
13+
- 25.1
14+
- 26.3
15+
- 27.1
16+
- snapshot
17+
steps:
18+
- uses: purcell/setup-emacs@master
19+
with:
20+
version: ${{ matrix.emacs_version }}
21+
- uses: actions/checkout@v1
22+
- name: Run tests
23+
run: |
24+
make test

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)