Initial Commit

This commit is contained in:
idanoo 2022-09-13 19:31:25 +12:00
commit ee32ba1537
Signed by: idanoo
GPG key ID: 387387CDBC02F132
13 changed files with 583 additions and 0 deletions

9
.woodpecker/.build.yml Normal file
View file

@ -0,0 +1,9 @@
pipeline:
build:
image: golang:1.19.1
commands:
- go mod tidy
depends_on:
- lint
- test

5
.woodpecker/.lint.yml Normal file
View file

@ -0,0 +1,5 @@
pipeline:
lint:
image: golang:1.19.1
commands:
- go mod tidy

8
.woodpecker/.test.yml Normal file
View file

@ -0,0 +1,8 @@
pipeline:
tests:
image: golang:1.19.1
commands:
- go mod tidy
depends_on:
- lint