github.com/lrita/cache@v1.0.1/.travis.yml (about) 1 language: go 2 3 go: 4 - 1.10.x 5 - 1.11.x 6 - 1.12.x 7 - 1.13.x 8 9 # let us have speedy Docker-based Travis workers 10 sudo: false 11 12 script: 13 - go vet ./... 14 - go vet ./... 15 - go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... 16 17 after_success: 18 - bash <(curl -s https://codecov.io/bash)