GitLab CI¶
.gitlab-ci.yml:
stages:
- test
- quality
crap:
stage: quality
image: golang:1.23
before_script:
- go install github.com/padiazg/go-crap@latest
script:
- go-crap scan --fail-above --threshold 30 --exclude '.*_test\.go' --exclude 'testdata/.*\.go'
allow_failure: false