mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
194e01c9c6
* CI: run "build" on pull too * vendor build tools too
20 lines
245 B
YAML
20 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)
|
|
|