blob: 13d0a4f25404de04c800cc617e837e09756bf1ac [file] [log] [blame]
Elia Battistonc8d0d462022-02-22 16:30:51 +01001sudo: false
2language: go
3go_import_path: go.uber.org/atomic
4
5env:
6 global:
7 - GO111MODULE=on
8
9matrix:
10 include:
11 - go: oldstable
12 - go: stable
13 env: LINT=1
14
15cache:
16 directories:
17 - vendor
18
19before_install:
20 - go version
21
22script:
23 - test -z "$LINT" || make lint
24 - make cover
25
26after_success:
27 - bash <(curl -s https://codecov.io/bash)