mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-04-25 06:16:58 +00:00
26 lines
513 B
YAML
26 lines
513 B
YAML
|
pipeline:
|
||
|
# use vendor to cache dependencies
|
||
|
vendor:
|
||
|
image: golang
|
||
|
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; }"
|
||
|
- golangci-lint run
|
||
|
|
||
|
# # TODO: make tests work
|
||
|
# test:
|
||
|
# image: golang
|
||
|
# commands:
|
||
|
# - go test ./...
|
||
|
|
||
|
build:
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go build
|