diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..19c36125c00c688ba3645c79bc9f7722efc5cb1c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +stages: + - test + +run_tests: + stage: test + image: registry.git.autistici.org/ai3/docker/test/golang:master + script: + - run-go-test ./... + artifacts: + when: always + reports: + cobertura: cover.xml + junit: report.xml +