diff --git a/ci/.woodpecker.yml b/ci/.woodpecker.yml new file mode 100644 index 0000000..e87d92d --- /dev/null +++ b/ci/.woodpecker.yml @@ -0,0 +1,15 @@ +clone: + git: + image: woodpeckerci/plugin-git:v1.6.1 + environment: + - PLUGIN_SKIP_VERIFY=1 + +pipeline: + lint: + image: golangci/golangci-lint:v1.51.2 + commands: + - golangci-lint run -v --timeout 5m0s + test: + image: golang:1.20.1 + commands: + - go test ./...