diff options
author | Florian Fischer <florian.fischer@muhq.space> | 2021-12-28 21:44:40 +0100 |
---|---|---|
committer | Florian Fischer <florian.fischer@muhq.space> | 2021-12-28 21:44:40 +0100 |
commit | 217971601ff84c96361f2b23de7b7415cf18abba (patch) | |
tree | 93a17201186064dce4d26f42687f2af5ab521ff8 | |
parent | bbb2a93d1516ef3f92f1150895dbddc9d924e454 (diff) | |
download | vis-spellcheck-217971601ff84c96361f2b23de7b7415cf18abba.tar.gz |
CI: add simple Gitlab CI config
-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 |