19 lines
342 B
YAML
19 lines
342 B
YAML
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
stages:
|
|
- check
|
|
|
|
code-quality:
|
|
image: registry.gitlab.com/craigbarnes/dockerfiles/lua-testing
|
|
interruptible: true
|
|
stage: check
|
|
retry:
|
|
max: 2
|
|
when:
|
|
- runner_system_failure
|
|
- stuck_or_timeout_failure
|
|
script:
|
|
- luarocks install luacheck
|
|
- luacheck mods
|