mirror of https://github.com/hslam/shm.git
12 lines
221 B
YAML
12 lines
221 B
YAML
|
language: go
|
||
|
os:
|
||
|
- linux
|
||
|
go:
|
||
|
- 1.13
|
||
|
install:
|
||
|
- go get -t -v -d ./...
|
||
|
script:
|
||
|
- go test -v .
|
||
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|