CI modifications (#318)

Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/318
Co-authored-by: pat-s <patrick.schratz@gmail.com>
Co-committed-by: pat-s <patrick.schratz@gmail.com>
This commit is contained in:
pat-s 2024-04-27 21:26:21 +00:00 committed by Patrick Schratz
parent 1a332c1d54
commit e45a354eef
2 changed files with 60 additions and 26 deletions

26
.woodpecker/lint.yml Normal file
View file

@ -0,0 +1,26 @@
when:
- event: pull_request
- event: push
branch: renovate/*
steps:
lint:
depends_on: []
image: golangci/golangci-lint:v1.57.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 --timeout 5m --build-tags integration
when:
- event: pull_request
- event: push
branch: renovate/*
editor-config:
depends_on: []
image: mstruebing/editorconfig-checker:2.7.2
when:
- event: pull_request
- event: push
branch: renovate/*