mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
96828b16c1
* Support glob with doublestar for path conditions * Update docs and pipeline
18 lines
227 B
YAML
18 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)
|
|
|