add pipeline

This commit is contained in:
6543 2022-03-27 19:18:45 +02:00
parent a5504acb0e
commit 5663fadb05
2 changed files with 16 additions and 0 deletions

15
.woodpecker.yml Normal file
View file

@ -0,0 +1,15 @@
pipeline:
lint:
image: golang
commands:
- go vet
test:
image: golang
commands:
- go test ./...
build:
image: golang
commands:
- go build