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.
25 lines
337 B
25 lines
337 B
language: go
|
|
sudo: false
|
|
go_import_path: go.uber.org/automaxprocs
|
|
|
|
env:
|
|
global:
|
|
- GO111MODULE=on
|
|
|
|
matrix:
|
|
include:
|
|
- go: "1.12.x"
|
|
- go: "1.13.x"
|
|
env: LINT=1
|
|
|
|
install:
|
|
- make install
|
|
|
|
script:
|
|
- test -z "$LINT" || make lint
|
|
- make test
|
|
|
|
after_success:
|
|
- make cover
|
|
- bash <(curl -s https://codecov.io/bash)
|