Skip to content

add Github Action badge #50

add Github Action badge

add Github Action badge #50

Workflow file for this run

name: CI
on:
schedule:
- cron: '15 12 * * 3'
pull_request:
push:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
emacs_version:
- 25.1
- 25.2
- 25.3
- 26.1
- 26.2
- 26.3
- 27.1
- 27.2
- 28.1
- 28.2
- 29.1
- snapshot
exclude:
- os: macos-latest
emacs_version: 24.1
- os: macos-latest
emacs_version: 24.2
include:
- emacs_version: 24.1
lint_ignore: 1
- emacs_version: 24.2
lint_ignore: 1
env:
EMACS_LINT_IGNORE: ${{ matrix.lint_ignore }}
steps:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs_version }}
- uses: actions/checkout@v3
- name: Run tests
run: './run-ci.sh'