name: Lua Project

on:
  workflow_call:
    inputs:
    secrets:

jobs:
  Static-Analysis-Serious:
    runs-on: ubuntu-latest
    steps:
      - name: Check out repository code
        uses: actions/checkout@v3
      - name: Luacheck linter
        uses: https://github.com/lunarmodules/luacheck@v1.1.1
        with:
          args: --allow-defined-top --no-unused-args --only 0 --only 113 --only 142 --only 143 --only 221 --only 321 --only 341
  Static-Analysis-Mild:
    runs-on: ubuntu-latest
    steps:
      - name: Check out repository code
        uses: actions/checkout@v3
      - name: Luacheck linter
        uses: https://github.com/lunarmodules/luacheck@v1.1.1