From 6796f343cfd9354de4245d8bd8d7bcede01776b0 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Sat, 13 Apr 2024 16:18:46 +0200 Subject: [PATCH] Serious pipeline --- .gitea/workflows/lua.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/lua.yaml b/.gitea/workflows/lua.yaml index 343e7ae..30aa90f 100644 --- a/.gitea/workflows/lua.yaml +++ b/.gitea/workflows/lua.yaml @@ -6,7 +6,16 @@ on: secrets: jobs: - Static-Analysis: + 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