2020-04-20 20:18:40 +02:00
|
|
|
name: lua_lint
|
|
|
|
|
|
|
|
# Lint on lua changes on builtin or if workflow changed
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'builtin/**.lua'
|
|
|
|
- '.github/workflows/**.yml'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'builtin/**.lua'
|
|
|
|
- '.github/workflows/**.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
luacheck:
|
2020-05-02 12:52:51 +02:00
|
|
|
name: "Builtin Luacheck and Unit Tests"
|
2022-06-14 20:58:04 +12:00
|
|
|
runs-on: ubuntu-22.04
|
2020-04-20 20:18:40 +02:00
|
|
|
steps:
|
2022-05-26 19:30:24 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: leafo/gh-actions-lua@v9
|
|
|
|
with:
|
|
|
|
luaVersion: "5.1.5"
|
|
|
|
- uses: leafo/gh-actions-luarocks@v4
|
2020-04-20 20:18:40 +02:00
|
|
|
|
|
|
|
- name: Install luarocks tools
|
|
|
|
run: |
|
|
|
|
luarocks install --local luacheck
|
|
|
|
luarocks install --local busted
|
|
|
|
|
|
|
|
- name: Run checks
|
|
|
|
run: |
|
|
|
|
$HOME/.luarocks/bin/luacheck builtin
|
|
|
|
$HOME/.luarocks/bin/busted builtin
|