From 579e040bb152dd18c2ca3cb8bffa1c5ad559b40a Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 7 Nov 2021 14:49:39 +0000 Subject: [PATCH] GitHub Actions: Make LuaCheck build fail if LuaCheck errors are encountered We have fixed our backlog of LuaCheck errors, so we should make LuaCheck errors fail the build from now on to ensure new issues don't sneak in. --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a9cd307..9db9a79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,7 +56,6 @@ jobs: - name: Lua version run: lua -v - # luacheck throws lots of errors at the moment, so don't fail the build - name: Run luacheck - run: luacheck . || true + run: luacheck .