From 3621c45ab9f6c994703e18b98662952d700529d1 Mon Sep 17 00:00:00 2001 From: Stefan Goppelt Date: Sun, 14 Sep 2025 20:01:32 +0200 Subject: [PATCH] NO-ISSUE: A Test --- .drone.yml | 58 +++++++++++++++++++++++++++--------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/.drone.yml b/.drone.yml index 71c4d71..3d68a7c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,41 +7,41 @@ environment: steps: - name: prepare - image: golang:${GOVERSION} + image: golang:1.25.1 commands: - mkdir -p .build - go get -v ./... - go install gotest.tools/gotestsum@1.13.0 - go install golang.org/x/vuln/cmd/govulncheck@latest -- name: test - image: golang:${GOVERSION} - commands: - - mkdir -p .build - - gotestsum --format testname --junitfile .build/unittests.xml -- -coverprofile=.build/coverage.txt ./... - - govulncheck ./... - depends_on: - - prepare +# - name: test +# image: golang:${GOVERSION} +# commands: +# - mkdir -p .build +# - gotestsum --format testname --junitfile .build/unittests.xml -- -coverprofile=.build/coverage.txt ./... +# - govulncheck ./... +# depends_on: +# - prepare -- name: vulncheck - image: golang:${GOVERSION} - commands: - - govulncheck ./... - depends_on: - - prepare +# - name: vulncheck +# image: golang:${GOVERSION} +# commands: +# - govulncheck ./... +# depends_on: +# - prepare -- name: publish - image: golang - commands: - - echo "Publishing not implemented yet" - when: - branch: - - main - event: - - custom +# - name: publish +# image: golang +# commands: +# - echo "Publishing not implemented yet" +# when: +# branch: +# - main +# event: +# - custom -trigger: - event: - - push - - cron - - custom \ No newline at end of file +# trigger: +# event: +# - push +# - cron +# - custom \ No newline at end of file