diff options
-rw-r--r-- | .editorconfig | 11 | ||||
-rw-r--r-- | .gitlab-ci.yml | 23 |
2 files changed, 34 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1635025 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# http://editorconfig.org + +root = true + +[*.lua] +indent_style = space +indent_size = 2 + +[.gitlab-ci.yml] +indent_style = space +indent_size = 2 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..93109a8 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +image: imolein/luarocks:5.4 + +stages: + - check + - test + +check-luacheck: + stage: check + script: + - luarocks install luacheck + - make check-luacheck + +# check-format: + # stage: check + # script: + # - luarocks install --server=https://luarocks.org/dev luaformatter + # - make check-format + +test: + stage: test + script: + - luarocks install lunatest + - make test |