mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-18 18:39:42 +00:00
30 lines
705 B
YAML
30 lines
705 B
YAML
when:
|
|
- event: pull_request
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
lint:
|
|
depends_on: []
|
|
image: golangci/golangci-lint:v1.62.0
|
|
commands:
|
|
- go version
|
|
- go install mvdan.cc/gofumpt@latest
|
|
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
|
|
- golangci-lint run --timeout 5m --build-tags integration
|
|
|
|
editor-config:
|
|
depends_on: []
|
|
image: mstruebing/editorconfig-checker:v3.0.3
|
|
|
|
yamllint:
|
|
image: pipelinecomponents/yamllint:0.32.1
|
|
depends_on: []
|
|
commands:
|
|
- yamllint .
|
|
|
|
prettier:
|
|
image: docker.io/woodpeckerci/plugin-prettier:0.2.0
|
|
depends_on: []
|
|
settings:
|
|
version: 3.2.5
|