Files
LeetCode-Go/.travis.yml
2020-08-07 10:07:44 +08:00

18 lines
201 B
YAML

language: go
go:
- master
# whitelist
branches:
only:
- master
script:
- go get -t -v ./...
- go vet ./...
- bash ./gotest.sh
after_success:
- bash <(curl -s https://codecov.io/bash)