feat: Add CI

This commit is contained in:
PapaTutuWawa 2024-01-01 20:12:09 +01:00
parent ebdd56013d
commit 18b523c672

8
.woodpecker.yml Normal file
View File

@ -0,0 +1,8 @@
steps:
build:
image: "golang/1.21.5-alpine"
commands:
- go get
- go build ./cmd/rio
- go fmt $(go list ./... | grep -v /vendor/)
- go vet $(go list ./... | grep -v /vendor/)