ci: add the pipeline
ci/woodpecker/push/build Pipeline was successful Details

Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
This commit is contained in:
Vincenzo Palazzo 2023-03-23 21:09:21 +01:00
parent fc09efff84
commit 92516cfc5f
Signed by: vincenzopalazzo
GPG Key ID: 8B6DC2B870B80D5F
1 changed files with 14 additions and 0 deletions

14
.woodpecker/build.yml Normal file
View File

@ -0,0 +1,14 @@
pipeline:
# Builds your Go application
build:
# Set your preferred Go version:
image: golang:1.19
environment:
# Select your target OS:
- GOOS=linux
# Select your target architecture:
- GOARCH=amd64
commands:
- make dep
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.51.1
- make