Skip to content

Commit

Permalink
Switch to GitHub actions for testing (#24)
Browse files Browse the repository at this point in the history
Travis is a bit flaky, see flycheck/emacs-travis#22.
  • Loading branch information
mineo authored Oct 14, 2019
1 parent 1cae585 commit 8059900
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 47 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on: [pull_request, push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- 24.3
- 24.4
- 24.5
- 25.1
- 25.2
- 25.3
- 26.1
- 26.2
- 26.3
- snapshot
steps:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- name: Install cask
run: git clone --depth=1 https://github.com/cask/cask.git "${HOME}/.cask" && sudo ln -s "${HOME}/.cask/bin/cask" "/usr/local/bin/cask"
- uses: actions/checkout@v1
- name: Run tests
run: make setup test
47 changes: 0 additions & 47 deletions .travis.yml

This file was deleted.

0 comments on commit 8059900

Please sign in to comment.