From b0c9c80e98f6e542922d2a1e2d1575d1e1bebe1c Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Tue, 12 Dec 2023 23:32:45 +0100 Subject: [PATCH] Workflows --- .gitea/workflows/game.yaml | 6 ++++++ .luacheckrc | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitea/workflows/game.yaml create mode 100644 .luacheckrc diff --git a/.gitea/workflows/game.yaml b/.gitea/workflows/game.yaml new file mode 100644 index 0000000..a7a700e --- /dev/null +++ b/.gitea/workflows/game.yaml @@ -0,0 +1,6 @@ +name: LÖVE/Lua Library +on: [push] + +jobs: + Static-Analysis: + uses: jmaa/workflows/.gitea/workflows/lua.yaml@main diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..77b1724 --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,6 @@ +std = "max" +cache = true +include_files = {"src/**/*.lua", "content/**/*.lua", "*.luacheckrc"} +exclude_files = {} +self = false +max_line_length=false