Skip to content

Instantly share code, notes, and snippets.

View albertobravi's full-sized avatar

Alberto Bravi albertobravi

View GitHub Profile
### Keybase proof
I hereby claim:
* I am albertobravi on github.
* I am dronca (https://keybase.io/dronca) on keybase.
* I have a public key ASByOHhFwle0LsRytRtzoet4hsLZ725y98pmdxaW8noJngo
To claim this, I am signing this object:
@albertobravi
albertobravi / circle.yml
Created March 12, 2017 14:34
CircleCI simple configuration for Go application
machine:
environment:
GOPATH: /home/ubuntu/$CIRCLE_PROJECT_REPONAME
general:
build_dir: $GOPATH
checkout:
post:
- cd $GOPATH
@albertobravi
albertobravi / .travis.yml
Last active March 12, 2017 14:34
Travis simple configuration for Go application
language: go
sudo: false
go:
- 1.8
install:
- export GOPATH="${TRAVIS_BUILD_DIR}"
- cd $GOPATH
- go get -v ./...