ci: update to Emacs 26.1 #117
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: Test .el files | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Install Emacs 26 | |
run: | | |
echo 'deb [trusted=yes] https://security.debian.org/debian-security stable-security main' | sudo tee /etc/apt/sources.list | |
sudo apt update | |
sudo apt search emacs | |
sudo apt install --allow-downgrades emacs=26.1 | |
- name: Install Just | |
uses: extractions/setup-just@v2 | |
with: | |
just-version: 1.13 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run tests | |
run: just test | |
- name: Check .el files | |
run: emacs --script scripts/check-lisp-files.el | |
- name: Check indentation | |
run: git diff --exit-code |