summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authoratanarjuat <atanarjuat@example.com>2022-05-29 18:43:23 +0200
committeratanarjuat <atanarjuat@example.com>2022-05-29 18:43:23 +0200
commit644bab1941fc15910e933e59569828733ade72e5 (patch)
treeb2fcbe44e0bef6c94acc96f8ace513c35038b0d3 /.gitlab-ci.yml
parent0d647390a206a4ed4e513e419869055408df9822 (diff)
go get before tests
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 830e638..8699ac0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,7 +9,7 @@ test:
stage: test
script:
- apk add build-base
- - go test -v ./...
+ - go get ./... && go test -v ./...
tags:
- linux