1language: go 2 3go: 4 - 1.11.x 5 - 1.12.x 6 - 1.13.x 7 - 1.14.x 8 9env: 10 GO111MODULE=on 11 12matrix: 13 fast_finish: true 14 15before_install: 16 - go get -t -v ./... 17 18script: 19 - go test -coverprofile=coverage.txt -covermode=atomic ./textseg 20 - cd autoversion && go test ./textseg 21 22after_success: 23 - bash <(curl -s https://codecov.io/bash) 24