aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/lint.yml')
-rw-r--r--.github/workflows/lint.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 0000000..34fde49
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,16 @@
+name: Lint
+on: [push]
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ emacs_version: [25, 26, 27, "master"]
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Run linters
+ env:
+ VERSION: ${{ matrix.emacs_version }}
+ run: >-
+ make docker CMD="make lint"