NO-ISSUE: FIxed build
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Stefan Goppelt 2026-03-08 08:29:59 +01:00
parent 60add201c8
commit 0647764b5d
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
kind: pipeline
type: docker
name: go-lib/util
environment:
VERSION: development
@ -13,13 +14,12 @@ steps:
image: golang
commands:
- go get -v ./...
- go install gotest.tools/gotestsum@v1.13.0
- go install golang.org/x/vuln/cmd/govulncheck@latest
- name: test
image: golang
commands:
- mkdir -p .build
- go install gotest.tools/gotestsum@v1.13.0
- gotestsum --format testname --junitfile .build/unittests.xml -- -coverprofile=.build/coverage.txt ./...
depends_on:
- prepare
@ -27,6 +27,7 @@ steps:
- name: vulncheck
image: golang
commands:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
- ls -la /go/
depends_on: