From 9ce1226ee20fa45ecddcf45d94ce470358cc3989 Mon Sep 17 00:00:00 2001 From: Alexandre Pujol Date: Sun, 5 Dec 2021 00:21:16 +0000 Subject: [PATCH] ci: enable aa-log tests. --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 26e0de8bb..e1e8cef96 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,6 +9,7 @@ variables: stages: - lint + - test - build - preprocess @@ -34,6 +35,16 @@ sast: stage: lint +# Code test +# --------- + +tests: + stage: test + image: golang + script: + - go test ./cmd/aa-log -v -cover + + # Package Build # -------------