Skip to content

Instantly share code, notes, and snippets.

View tomaszczerminski's full-sized avatar
🏠
Working from home

Tomasz Czermiński tomaszczerminski

🏠
Working from home
View GitHub Profile
@tomaszczerminski
tomaszczerminski / .travis.yml
Created May 24, 2019 11:19 — forked from ryboe/.travis.yml
Example .travis.yml for Golang
# use the latest ubuntu environment (18.04) available on travis
dist: xenial
language: go
# Force-enable Go modules. Also force go to use the code in vendor/
# These will both be unnecessary when Go 1.13 lands.
env:
- GO111MODULE=on
- GOFLAGS='-mod vendor'