diff --git a/.gitignore b/.gitignore index 3117f77..dfe69ac 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ key-database.pogreb/ acme-account.json build/ vendor/ +pages diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..8d24843 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +pipeline: + lint: + image: golang + commands: + - go vet + + test: + image: golang + commands: + - go test ./... + + build: + image: golang + commands: + - go build