diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 26e0de8b..e1e8cef9 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 # -------------