From 31ef3ade89763c6ef36bc4f0cba0140c58eb0f1c Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Fri, 26 Apr 2024 14:26:41 +0200 Subject: [PATCH] Bumped workflows to v6.19 --- .gitea/workflows/game.yaml | 6 ------ .gitea/workflows/lua-library.yaml | 8 ++++++++ .luacheckrc | 2 +- test/{tests.lua => init.lua} | 0 4 files changed, 9 insertions(+), 7 deletions(-) delete mode 100644 .gitea/workflows/game.yaml create mode 100644 .gitea/workflows/lua-library.yaml rename test/{tests.lua => init.lua} (100%) diff --git a/.gitea/workflows/game.yaml b/.gitea/workflows/game.yaml deleted file mode 100644 index a7a700e..0000000 --- a/.gitea/workflows/game.yaml +++ /dev/null @@ -1,6 +0,0 @@ -name: LÖVE/Lua Library -on: [push] - -jobs: - Static-Analysis: - uses: jmaa/workflows/.gitea/workflows/lua.yaml@main diff --git a/.gitea/workflows/lua-library.yaml b/.gitea/workflows/lua-library.yaml new file mode 100644 index 0000000..af36b5c --- /dev/null +++ b/.gitea/workflows/lua-library.yaml @@ -0,0 +1,8 @@ +name: Lua Library +on: [push] + +jobs: + Lua-Testing: + uses: jmaa/workflows/.gitea/workflows/lua-testing.yaml@v6.19 + Static-Analysis: + uses: jmaa/workflows/.gitea/workflows/lua-static-analysis.yaml@v6.19 diff --git a/.luacheckrc b/.luacheckrc index 77b1724..110a108 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,6 +1,6 @@ std = "max" cache = true -include_files = {"src/**/*.lua", "content/**/*.lua", "*.luacheckrc"} +include_files = {"**.lua"} exclude_files = {} self = false max_line_length=false diff --git a/test/tests.lua b/test/init.lua similarity index 100% rename from test/tests.lua rename to test/init.lua