feat: Add CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
PapaTutuWawa 2024-01-01 20:15:23 +01:00
parent ebdd56013d
commit f9d3f0dd5b

10
.woodpecker.yml Normal file
View File

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