blob: 8636ab42ad14187003fac4860ce569147e06dd03 [file] [log] [blame]
Don Newton7577f072020-01-06 12:41:11 -05001sudo: false
2language: go
3go_import_path: go.uber.org/multierr
4
5env:
6 global:
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +00007 - GO111MODULE=on
Don Newton7577f072020-01-06 12:41:11 -05008
9go:
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000010 - oldstable
11 - stable
Don Newton7577f072020-01-06 12:41:11 -050012
13before_install:
14- go version
15
Don Newton7577f072020-01-06 12:41:11 -050016script:
17- |
18 set -e
19 make lint
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000020 make cover
Don Newton7577f072020-01-06 12:41:11 -050021
22after_success:
23- bash <(curl -s https://codecov.io/bash)