mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-24 07:06:19 +00:00
21 lines
245 B
YAML
21 lines
245 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.12
|
||
|
- 1.13
|
||
|
- 1.14
|
||
|
|
||
|
os:
|
||
|
- linux
|
||
|
- windows
|
||
|
|
||
|
before_install:
|
||
|
- go get -t -v ./...
|
||
|
|
||
|
script:
|
||
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
||
|
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|
||
|
|