blob: 13d0a4f25404de04c800cc617e837e09756bf1ac [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001sudo: false
2language: go
3go_import_path: go.uber.org/atomic
4
khenaidoo106c61a2021-08-11 18:05:46 -04005env:
6 global:
7 - GO111MODULE=on
Abhilash S.L3b494632019-07-16 15:51:09 +05308
9matrix:
10 include:
khenaidoo106c61a2021-08-11 18:05:46 -040011 - go: oldstable
12 - go: stable
13 env: LINT=1
William Kurkianea869482019-04-09 15:16:11 -040014
15cache:
16 directories:
17 - vendor
18
khenaidoo106c61a2021-08-11 18:05:46 -040019before_install:
20 - go version
William Kurkianea869482019-04-09 15:16:11 -040021
22script:
khenaidoo106c61a2021-08-11 18:05:46 -040023 - test -z "$LINT" || make lint
24 - make cover
William Kurkianea869482019-04-09 15:16:11 -040025
26after_success:
27 - bash <(curl -s https://codecov.io/bash)