feat: renamed steps
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Simon Cornet 2026-05-15 16:54:10 +02:00
commit ab38a23023

View file

@ -10,16 +10,16 @@ clone:
steps: steps:
# lintint # lintint
- name: "golang-lint" - name: "linting"
image: "cr.simoncor.net/dockerhub/golangci/golangci-lint:v2.1-alpine" image: "cr.simoncor.net/dockerhub/golangci/golangci-lint:v2.1-alpine"
commands: commands:
- "golangci-lint run" - "golangci-lint run"
# testing # testing
- name: "go-test" - name: "testing"
image: "registry.gitlab.simoncor.net/oci/go-build:v25.06.03" image: "registry.gitlab.simoncor.net/oci/go-build:v25.06.03"
depends_on: depends_on:
- "golang-lint" - "linting"
commands: commands:
- "go test ./..." - "go test ./..."
@ -27,7 +27,7 @@ steps:
- name: "releasing" - name: "releasing"
image: "cr.simoncor.net/dockerhub/goreleaser/goreleaser:v2.10.2" image: "cr.simoncor.net/dockerhub/goreleaser/goreleaser:v2.10.2"
depends_on: depends_on:
- "go-test" - "testing"
secrets: secrets:
- "goreleaser_forgejo_token" - "goreleaser_forgejo_token"
environment: environment: