From 6ea8c3d5feb4f251158aa115911775a480306ef8 Mon Sep 17 00:00:00 2001 From: Markus Opolka <7090372+martialblog@users.noreply.github.com> Date: Mon, 16 Feb 2026 09:39:35 +0100 Subject: [PATCH] Remove gitlab-ci config --- .gitlab-ci.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 720d38a..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,29 +0,0 @@ -image: golang:latest - -stages: - - lint - - test - -go_vet: - stage: lint - script: - - go vet $(go list ./... | grep -v /vendor/) - -go_fmt: - stage: lint - script: - - go fmt $(go list ./... | grep -v /vendor/) - -golangci: - stage: lint - image: - name: docker.io/golangci/golangci-lint:v1.53 - entrypoint: [''] - script: - - golangci-lint run -v - -go_test: - stage: test - coverage: '/coverage: (\d+\.\d+)/' - script: - - go test -v -cover ./...