From 4ca017ac5d868da44602b4633d3801dba019a872 Mon Sep 17 00:00:00 2001 From: Gabriel Filion Date: Wed, 28 Aug 2024 19:12:10 -0400 Subject: [PATCH] CI: add lua lint check We now have our first lua script so we should start checking that for obvious problems --- .github/workflows/vader.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/vader.yml b/.github/workflows/vader.yml index f2eae76..c193be8 100644 --- a/.github/workflows/vader.yml +++ b/.github/workflows/vader.yml @@ -19,6 +19,7 @@ jobs: run: pip install --pre vim-vint - name: Lint vimscript files run: vint --warning --enable-neovim ./after ./autoload ./compiler ./ftdetect ./ftplugin ./indent ./syntax + - uses: lunarmodules/luacheck@v1 - name: Install shellcheck run: sudo apt-get -y install shellcheck - name: Lint shell scripts