mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-06 17:44:10 +08:00
18 lines
201 B
YAML
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)
|