You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
486 B
27 lines
486 B
name: CI |
|
|
|
on: |
|
push: |
|
paths-ignore: |
|
- '**/*.md' |
|
|
|
jobs: |
|
build: |
|
runs-on: ubuntu-latest |
|
strategy: |
|
matrix: |
|
emacs_version: |
|
- 23.4 |
|
- 24.5 |
|
- 25.3 |
|
- 26.3 |
|
- snapshot |
|
env: |
|
EMACS_VERSION: ${{ matrix.emacs_version }} |
|
steps: |
|
- uses: purcell/setup-emacs@master |
|
with: |
|
version: ${{ matrix.emacs_version }} |
|
- uses: actions/checkout@v1 |
|
- name: Run tests |
|
run: './run-tests.sh'
|
|
|