mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
19 lines
227 B
YAML
19 lines
227 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.16
|
||
|
|
||
|
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)
|
||
|
|