diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-02-20 08:05:47 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-02-20 13:50:07 +0100 |
| commit | 1efb91ce7f28f5b0c402ff250bcd89049fe19853 (patch) | |
| tree | 45df922229a6c524c3c86c3c63ab2c14a62443a4 /.github/workflows | |
| parent | 1998279dc26d6bf45d573be96a2a97e44ce2c839 (diff) | |
| download | vis-1efb91ce7f28f5b0c402ff250bcd89049fe19853.tar.gz vis-1efb91ce7f28f5b0c402ff250bcd89049fe19853.tar.xz | |
ci: add Lua static code analysis
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/luacheck.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml new file mode 100644 index 0000000..0ff4248 --- /dev/null +++ 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 |
