feat: Add CI
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
PapaTutuWawa 2024-01-01 20:13:52 +01:00
parent ebdd56013d
commit b7b8b472a5

11
.woodpecker.yml Normal file
View File

@ -0,0 +1,11 @@
steps:
build:
image: "golang/1.21.5-alpine"
commands:
- go get
- 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/)