diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-26 19:19:19 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-26 19:19:19 +0200 |
commit | 6923d697d6bcc9963e270b164e7f12a7e22bceae (patch) | |
tree | 5508aece951ddbc68f7d6a8e85b8e558c213e8d5 | |
parent | 05de691fbc8ab72741b61d310c90dbc770fd4b3a (diff) | |
download | refcat-6923d697d6bcc9963e270b164e7f12a7e22bceae.tar.gz refcat-6923d697d6bcc9963e270b164e7f12a7e22bceae.zip |
add ci script
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6586657 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,6 @@ +image: golang:1.16.6-buster + +skate_tests: + script: + - go version + - cd skate && go test -v && cd - |