Add github test action
This commit is contained in:
parent
a42dd902cb
commit
18a1b3c05b
1 changed files with 26 additions and 0 deletions
26
.github/workflows/test.yml
vendored
Normal file
26
.github/workflows/test.yml
vendored
Normal 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!
|
Loading…
Reference in a new issue