From fa5327e322ccd37efeaff5510afc5409bf4f8a5b Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Fri, 15 Oct 2021 14:04:08 +0100
Subject: [PATCH] Add basic CI config

---
 .gitlab-ci.yml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..19c3612
--- /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
+
-- 
GitLab