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