2022-06-10 17:42:12 +02:00
|
|
|
branches: main
|
|
|
|
|
2022-03-27 21:54:06 +02:00
|
|
|
pipeline:
|
|
|
|
# use vendor to cache dependencies
|
|
|
|
vendor:
|
2022-06-10 15:27:17 +02:00
|
|
|
image: golang:1.18
|
2022-03-27 21:54:06 +02:00
|
|
|
commands:
|
|
|
|
- go mod vendor
|
|
|
|
|
|
|
|
lint:
|
|
|
|
image: golangci/golangci-lint:v1.45.2
|
|
|
|
commands:
|
|
|
|
- go version
|
|
|
|
- go install mvdan.cc/gofumpt@latest
|
|
|
|
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
|
2022-05-10 18:14:28 +02:00
|
|
|
- golangci-lint run --timeout 5m
|
2022-03-27 21:54:06 +02:00
|
|
|
|
2022-03-30 21:31:09 +02:00
|
|
|
test:
|
2022-06-10 15:27:17 +02:00
|
|
|
image: golang:1.18
|
2022-03-30 21:31:09 +02:00
|
|
|
commands:
|
|
|
|
- go test ./...
|
2022-03-27 21:54:06 +02:00
|
|
|
|
|
|
|
build:
|
2022-06-10 15:27:17 +02:00
|
|
|
image: golang:1.18
|
2022-03-27 21:54:06 +02:00
|
|
|
commands:
|
|
|
|
- go build
|
2022-06-10 17:39:12 +02:00
|
|
|
|
|
|
|
integration-tests:
|
|
|
|
image: golang:1.18
|
|
|
|
detach: true
|
|
|
|
commands:
|
|
|
|
- go run . --verbose &
|
|
|
|
- pid=$!
|
|
|
|
- sleep 10s
|
2022-06-10 17:51:04 +02:00
|
|
|
- (cd integration && go test -tags integration ./...)
|
2022-06-10 17:39:12 +02:00
|
|
|
- kill $pid
|
|
|
|
environment:
|
|
|
|
- ACME_API=https://acme.mock.directory
|
|
|
|
- ACME_ACCEPT_TERMS=true
|
|
|
|
- PAGES_DOMAIN=localhost.mock.directory
|
|
|
|
- RAW_DOMAIN=raw.localhost.mock.directory
|
|
|
|
- PORT=4430
|