parent
e85ed7aa93
commit
42862f345b
3 changed files with 39 additions and 2 deletions
@ -0,0 +1,37 @@ |
||||
name: CI |
||||
on: [push] |
||||
|
||||
jobs: |
||||
build: |
||||
runs-on: ubuntu-latest |
||||
strategy: |
||||
matrix: |
||||
emacs_version: |
||||
- '24.1' |
||||
- '24.2' |
||||
- '24.3' |
||||
- '24.4' |
||||
- '24.5' |
||||
- '25.1' |
||||
- '25.2' |
||||
- '25.3' |
||||
- '26.1' |
||||
- '26.2' |
||||
- '26.3' |
||||
- 'snapshot' |
||||
include: |
||||
- emacs_version: 'snapshot' |
||||
allow_failure: true |
||||
steps: |
||||
- uses: actions/checkout@v1 |
||||
- uses: purcell/setup-emacs@master |
||||
with: |
||||
version: ${{ matrix.emacs_version }} |
||||
|
||||
- name: Run tests |
||||
if: matrix.allow_failure != true |
||||
run: './run-tests.sh' |
||||
|
||||
- name: Run tests (allow failure) |
||||
if: matrix.allow_failure == true |
||||
run: './run-tests.sh || true' |
||||
Loading…
Reference in new issue