github.com/asynkron/protoactor-go@v0.0.0-20240308120642-ef91a6abee75/.travis.yml (about) 1 language: go 2 sudo: false 3 4 env: 5 - GO111MODULE=on 6 7 git: 8 depth: 1 9 10 go: 11 - 1.12.x 12 - 1.13.x 13 - tip 14 15 before_script: 16 - go get github.com/mattn/goveralls 17 18 script: 19 - go test -v -race -short -coverprofile=coverage.out ./... 20 - $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci 21 22 matrix: 23 allow_failures: 24 - go: tip