From 2025050f72eab3f674ad5cf05da5187b248c7696 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 23 Jan 2026 14:33:49 +0100 Subject: [PATCH] chore: remove unused .gitlab-ci.yml No longer needed after migration to Gitea Actions. Co-Authored-By: Claude Opus 4.5 --- .gitlab-ci.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index f66bb66..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,38 +0,0 @@ -include: -- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml' -- project: unboundsoftware/ci-templates - file: Defaults.gitlab-ci.yml -- project: unboundsoftware/ci-templates - file: Release.gitlab-ci.yml -- project: unboundsoftware/ci-templates - file: Pre-Commit-Go.gitlab-ci.yml - -image: amd64/golang:1.25.6@sha256:9860925875ac68a8fb57416cfc5c1ee267a06226730434af677b9406e8ea6ee6 - -stages: -- deps -- test - -deps: - stage: deps - script: - - go mod download - -test: - stage: test - dependencies: - - deps - script: - - CGO_ENABLED=1 go test -mod=readonly -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=$(go list ./... | tr '\n' , | sed 's/,$//') ./... - - go tool cover -html=coverage.txt -o coverage.html - - go tool cover -func=coverage.txt - - curl -Os https://uploader.codecov.io/latest/linux/codecov - - chmod +x codecov - - ./codecov -t ${CODECOV_TOKEN} -R $CI_PROJECT_DIR -C $CI_COMMIT_SHA -r $CI_PROJECT_PATH - -vulnerabilities: - stage: test - image: amd64/golang:1.25.6@sha256:9860925875ac68a8fb57416cfc5c1ee267a06226730434af677b9406e8ea6ee6 - script: - - go install golang.org/x/vuln/cmd/govulncheck@latest - - govulncheck ./...