You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
342 B
18 lines
342 B
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
|
|
|