diff options
author | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
commit | 5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch) | |
tree | a9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /.github/workflows/luacheck.yml | |
parent | ccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff) | |
parent | 43a97b7f0053313b43906371dbdc226271e6c8ab (diff) | |
download | luasocket-hjelmeland-patch-1.tar.gz luasocket-hjelmeland-patch-1.tar.bz2 luasocket-hjelmeland-patch-1.zip |
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
Diffstat (limited to '.github/workflows/luacheck.yml')
-rw-r--r-- | .github/workflows/luacheck.yml | 13 |
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 @@ | |||
1 | name: Luacheck | ||
2 | |||
3 | on: [push, pull_request] | ||
4 | |||
5 | jobs: | ||
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 | ||