You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
language: go
|
|
go_import_path: go.etcd.io/bbolt
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.12
|
|
|
|
before_install:
|
|
- go get -v honnef.co/go/tools/...
|
|
- go get -v github.com/kisielk/errcheck
|
|
|
|
script:
|
|
- make fmt
|
|
- make test
|
|
- make race
|
|
# - make errcheck
|
|
|