1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 02:34:15 +00:00

no need gosimple

This commit is contained in:
JessonChan 2019-01-22 19:12:25 +08:00
parent c3eca637fb
commit 2956d33bab

View File

@ -55,7 +55,7 @@ after_script:
- rm -rf ./res/var/*
script:
- go test -v ./...
- staticcheck -show-ignored "$(cat .gosimpleignore)" $(go list ./... | grep -v /vendor/)
- staticcheck -show-ignored $(go list ./... | grep -v /vendor/)
- unconvert $(go list ./... | grep -v /vendor/)
- ineffassign .
- find . ! \( -path './vendor' -prune \) -type f -name '*.go' -print0 | xargs -0 gofmt -l -s