mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
12 lines
210 B
YAML
12 lines
210 B
YAML
language: go
|
|
go:
|
|
- 1.11.x
|
|
os:
|
|
- linux
|
|
- osx
|
|
before_install:
|
|
- go get -t -v ./...
|
|
script:
|
|
- go test -v -race -covermode=atomic -coverprofile=coverage.txt
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|