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_linters.yml | |
parent | 41e564da7af9c552cef0640c1fddb235cafd854e (diff) | |
download | rspamd-6aee123f55dba79d76ab0a5395093ddd5a7f4988.tar.gz rspamd-6aee123f55dba79d76ab0a5395093ddd5a7f4988.zip |
[Test] Migrate to Github Actions
Diffstat (limited to '.github/workflows/ci_linters.yml')
-rw-r--r-- | .github/workflows/ci_linters.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci_linters.yml b/.github/workflows/ci_linters.yml new file mode 100644 index 000000000..6df1a4480 --- /dev/null +++ b/.github/workflows/ci_linters.yml @@ -0,0 +1,14 @@ +name: ci_linters + +on: + workflow_call: + +jobs: + eslint: + uses: ./.github/workflows/ci_eslint.yml + + luacheck: + uses: ./.github/workflows/ci_luacheck.yml + + tidyall: + uses: ./.github/workflows/ci_tidyall.yml |