remove tests checking for incompatible modes #9
This file contains hidden or 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: | |
| 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 |