pominal/.gitlab-ci.yml
Dan Anglin 0a86afbec3
chore: updated Go to version 1.13.4
As part of the Go update the flag.Parse()
function was moved out of init() and into
main() as the test was failing.
2019-12-01 20:30:20 +00:00

16 lines
146 B
YAML

---
image: golang:1.13.4
variables:
CGO_ENABLED: 0
stages:
- test
#- release
test:unit:
stage: test
script:
- make test_unit
#release