aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lua_lint.yml
diff options
context:
space:
mode:
authorx2048 <codeforsmile@gmail.com>2022-04-30 15:54:07 +0200
committerGitHub <noreply@github.com>2022-04-30 15:54:07 +0200
commit828461c193c9dcee1221a367b340084e4ee643ad (patch)
tree65c7894f67b0dab9868154ba73535653ac9ffb6f /.github/workflows/lua_lint.yml
parentec4a789b4f56d7918b6c964e59b9903af5e17fcd (diff)
downloadminetest-828461c193c9dcee1221a367b340084e4ee643ad.tar.xz
Run automated tests when lua files change (#12184)
* Run automated tests when lua files change * skip busted on devtest * use newer build env * Add .luacheckrc for games/devetest Co-authored-by: sfan5 <sfan5@live.de>
Diffstat (limited to '.github/workflows/lua_lint.yml')
-rw-r--r--.github/workflows/lua_lint.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/lua_lint.yml b/.github/workflows/lua_lint.yml
deleted file mode 100644
index 738e5afff..000000000
--- a/.github/workflows/lua_lint.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: lua_lint
-
-# Lint on lua changes on builtin or if workflow changed
-on:
- push:
- paths:
- - 'builtin/**.lua'
- - '.github/workflows/**.yml'
- pull_request:
- paths:
- - 'builtin/**.lua'
- - '.github/workflows/**.yml'
-
-jobs:
- luacheck:
- name: "Builtin Luacheck and Unit Tests"
- runs-on: ubuntu-18.04
- steps:
- - uses: actions/checkout@v2
- - name: Install luarocks
- run: |
- sudo apt-get install luarocks -qyy
-
- - name: Install luarocks tools
- run: |
- luarocks install --local luacheck
- luarocks install --local busted
-
- - name: Run checks
- run: |
- $HOME/.luarocks/bin/luacheck builtin
- $HOME/.luarocks/bin/busted builtin