mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 09:31:40 -05:00

<!-- To expedite the pull request process, please see the contributor guide for my projects: <https://github.com/raxod502/contributor-guide> -->
20 lines
382 B
YAML
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"
|