diff options
author | ale <ale@incal.net> | 2019-09-26 12:13:33 +0100 |
---|---|---|
committer | ale <ale@incal.net> | 2019-09-26 12:13:33 +0100 |
commit | f4ef521da8711c8c4b5cc144fa275b212fe695e7 (patch) | |
tree | 1db5af1541344c16222ebb041f3f9ea4b9d772fe | |
parent | 4b3b12900c77f8a2524a65e2fb52649c75b8bec0 (diff) | |
download | crawl-f4ef521da8711c8c4b5cc144fa275b212fe695e7.tar.gz crawl-f4ef521da8711c8c4b5cc144fa275b212fe695e7.zip |
Switch to latest Go image for CI test
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 523b250..63f339d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,6 @@ stages: run_tests: stage: test - image: "ai/test:go" - script: "go-test-runner ./..." + image: "golang:latest" + script: "go test -v ./..." |