From a1a70b5658dc73029445a88b74663ea3999a39cd Mon Sep 17 00:00:00 2001 From: Henry Hirsch Date: Sat, 24 May 2025 20:43:33 +0200 Subject: [PATCH] feat: add linting to the CI --- .github/workflows/linting.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/linting.yml diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml new file mode 100644 index 0000000..9e5f5aa --- /dev/null +++ b/.github/workflows/linting.yml @@ -0,0 +1,17 @@ +name: Linting +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Lint init.el + uses: leotaku/elisp-check@master + with: + file: init.el