Skip to content

Update ci.yaml

Update ci.yaml #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
emacs-version:
- 26.3
- 27.2
- 28.2
- 29.2
- snapshot
steps:
- uses: actions/checkout@v4
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- name: Byte compile
run: emacs -Q --batch -L . --eval "(setq byte-compile-error-on-warn t)" -f batch-byte-compile *.el
- name: Run tests
run: emacs -Q --batch -L . -l *-test*.el -f ert-run-tests-batch-and-exit