Skip to content

Instantly share code, notes, and snippets.

View g-dormoy's full-sized avatar
🏠
Working from home

Guillaume g-dormoy

🏠
Working from home
View GitHub Profile
@jcloutz
jcloutz / .golang-example-gitlab-ci.yml
Last active December 6, 2022 11:20
Example Gitlab CI setup for Go using the official golang docker image
image: golang:1.7
stages:
- build
- test
before_script:
- go get github.com/tools/godep
- cp -r /builds/user /go/src/github.com/user/
- cd /go/src/github.com/user/repo