Add github test action

This commit is contained in:
Patrick Winter 2019-10-22 18:03:04 +02:00 committed by GitHub
parent a42dd902cb
commit 18a1b3c05b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

26
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: CI
on:
push:
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version:
- 26.1
- 26.2
- 26.3
- snapshot
steps:
- name: Set up Emacs
uses: purcell/setup-emacs@v1.0
with:
version: ${{ matrix.emacs_version }}
- uses: actions/checkout@v1
- name: Run a one-line script
run: echo Hello, world!