diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7eecc75..93a2f9b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: golang:latest stages: - build + - test compile: stage: build @@ -11,3 +12,13 @@ compile: paths: - bingobot - start.sh + +tests-state-pkg: + stage: test + script: + - go test ./internal/state + +tests-config-pkg: + stage: test + script: + - go test ./internal/config