vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 48088958c531a9ee29ef0ec0b891c181108ecb21
parent 0325d7ae6e10233cc169764d420dfe5b538a073e
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Thu, 20 Feb 2020 08:05:47 +0100

ci: add Lua static code analysis

Diffstat:
A.github/workflows/luacheck.yml | 20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml @@ -0,0 +1,20 @@ +name: Lua Check + +on: + push: + paths: + - 'lua/**' + +jobs: + luacheck: + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v2 + + - name: Dependency + run: sudo apt install lua-check + + - name: Check + run: make luacheck