diff options
author | Andrew Lewis <nerf@judo.za.org> | 2024-03-13 18:00:17 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2024-03-14 14:51:50 +0200 |
commit | 6aee123f55dba79d76ab0a5395093ddd5a7f4988 (patch) | |
tree | 330f654a60b0c3163c53d1cc2fc329dd21754287 /.github/workflows/ci_luacheck.yml | |
parent | 41e564da7af9c552cef0640c1fddb235cafd854e (diff) | |
download | rspamd-6aee123f55dba79d76ab0a5395093ddd5a7f4988.tar.gz rspamd-6aee123f55dba79d76ab0a5395093ddd5a7f4988.zip |
[Test] Migrate to Github Actions
Diffstat (limited to '.github/workflows/ci_luacheck.yml')
-rw-r--r-- | .github/workflows/ci_luacheck.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci_luacheck.yml b/.github/workflows/ci_luacheck.yml new file mode 100644 index 000000000..d930fdae5 --- /dev/null +++ b/.github/workflows/ci_luacheck.yml @@ -0,0 +1,16 @@ +name: ci_luacheck + +on: + workflow_call: + +jobs: + luacheck: + runs-on: ubuntu-latest + container: + image: pipelinecomponents/luacheck + steps: + - name: Check out source code + uses: actions/checkout@v4 + + - name: Run luacheck + run: luacheck -q --no-color . |