Consider major-mode-remap-alist to determine major-mode #658
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
emacs_version: | |
- 27.2 | |
- 28.2 | |
- 29.1 | |
- snapshot | |
steps: | |
- uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt install pandoc aspell | |
- name: Run tests | |
run: | | |
make clean | |
make test |