This commit is contained in:
Phil 2022-12-23 23:18:11 +01:00
parent 51137677ce
commit c54789f0b9

View file

@ -1,6 +1,29 @@
kind: pipeline kind: pipeline
name: default name: default
workspace:
base: /go
path: src/gitea.hackmi.ch/Phil/goshorly
steps:
- name: check-format
image: golang
commands:
- go fmt $(go list ./... | grep -v /vendor/)
- go vet $(go list ./... | grep -v /vendor/)
- go test -race $(go list ./... | grep -v /vendor/)
- name: check-sec
image: golang
commands:
- go install github.com/securego/gosec/v2/cmd/gosec@latest
- go get -v -d .
- gosec ./...
kind: pipeline
name: default2
workspace: workspace:
base: /go base: /go
path: src/gitea.hackmi.ch/Phil/goshorly path: src/gitea.hackmi.ch/Phil/goshorly