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

This commit is contained in:
PapaTutuWawa 2024-01-01 20:14:21 +01:00
parent ebdd56013d
commit f646be3edf

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/)