From 3597e0fff6798e6a291ea1048cf5c2b67579cd56 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 4 Mar 2025 06:46:13 +0100 Subject: [PATCH] ci: added linter stage --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e0acb3..da65bec 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,13 +3,13 @@ stages: - "linter" - "build" -go-linter: +linter: stage: "linter" image: "golangci/golangci-lint:latest-alpine" script: - "golangci-lint run" -go-build: +build: stage: "build" needs: - "linter"