Skip to content

remove tests checking for incompatible modes #9

remove tests checking for incompatible modes

remove tests checking for incompatible modes #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Emacs ${{ matrix.emacs-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
emacs-version:
- "29.3"
- "30.2"
steps:
- uses: actions/checkout@v6
- name: Install Emacs ${{ matrix.emacs-version }}
uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- name: Byte-compile
run: make compile
- name: Lint
run: make lint
- name: Run ERT tests
run: make test