summaryrefslogtreecommitdiff
path: root/.github/workflows/lua_lint.yml
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2020-04-20 20:18:40 +0200
committerGitHub <noreply@github.com>2020-04-20 20:18:40 +0200
commit27a485a472706bededf38f0de2630688739ca0b2 (patch)
treea9eebf3c383e68d5856eddf1c608a427f2d7445b /.github/workflows/lua_lint.yml
parent338195ff250bd7552ef8167348de2eb05e421c29 (diff)
downloadminetest-27a485a472706bededf38f0de2630688739ca0b2.tar.gz
minetest-27a485a472706bededf38f0de2630688739ca0b2.tar.bz2
minetest-27a485a472706bededf38f0de2630688739ca0b2.zip
Replace travis with github actions (#9641)
* Move outside of travis to Github actions This will permit to have better integrated CI workflow than the previous travis one.
Diffstat (limited to '.github/workflows/lua_lint.yml')
-rw-r--r--.github/workflows/lua_lint.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/lua_lint.yml b/.github/workflows/lua_lint.yml
new file mode 100644
index 000000000..1b2c01192
--- /dev/null
+++ b/.github/workflows/lua_lint.yml
@@ -0,0 +1,32 @@
+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:
+ runs-on: ubuntu-18.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install luarocks
+ run: |
+ sudo apt-get update -qyy
+ 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