apheleia/.github/workflows/lint.yml
Radon Rosborough 317fe75906
Test against Emacs 29 instead of master (#255)
<!--

To expedite the pull request process, please see the contributor guide
for my projects:

  <https://github.com/raxod502/contributor-guide>

-->
2023-11-23 12:30:41 -08:00

20 lines
382 B
YAML

name: Lint
on:
push:
branches:
- main
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
emacs_version: [27, 28, 29]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run linters
env:
VERSION: ${{ matrix.emacs_version }}
run: >-
make docker CMD="make lint"