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

This commit is contained in:
PapaTutuWawa 2024-01-07 17:05:57 +01:00
parent 4ceb2023db
commit 1fc12339ba

10
.woodpecker.yml Normal file
View File

@ -0,0 +1,10 @@
steps:
build:
image: "golang:1.21.5-alpine"
commands:
- go build main.go
lint:
image: "golang:1.21.5-alpine"
commands:
- go fmt ./main.go
- go vet ./main.go