aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 6a3c3ce145531ae3ab4034dca381a95e465b6f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"