aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/luacheck.yml
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2023-12-22 00:44:00 +0300
committerGitHub <noreply@github.com>2023-12-22 00:44:00 +0300
commitf4e92f6291617cd989126510a7dc653e8cf28799 (patch)
tree35b896aa4766dd3fc5b1d147744b92b85178dab8 /.github/workflows/luacheck.yml
parentc06963917ccc951a1058d7b7f412c52d3c4f443a (diff)
downloadluasystem-f4e92f6291617cd989126510a7dc653e8cf28799.tar.gz
luasystem-f4e92f6291617cd989126510a7dc653e8cf28799.tar.bz2
luasystem-f4e92f6291617cd989126510a7dc653e8cf28799.zip
ci: Replace custom workflow installing Luacheck with dedicated action (#14)
Diffstat (limited to '.github/workflows/luacheck.yml')
-rw-r--r--.github/workflows/luacheck.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml
new file mode 100644
index 0000000..9cb784c
--- /dev/null
+++ b/.github/workflows/luacheck.yml
@@ -0,0 +1,13 @@
1name: Luacheck
2
3on: [push, pull_request]
4
5jobs:
6
7 luacheck:
8 runs-on: ubuntu-22.04
9 steps:
10 - name: Checkout
11 uses: actions/checkout@v4
12 - name: Luacheck
13 uses: lunarmodules/luacheck@v1