feat: initial commit

This commit is contained in:
Simon Cornet 2025-03-06 11:26:17 +01:00
commit 1d8b4f27b1
2 changed files with 19 additions and 0 deletions

18
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,18 @@
image: "golang:alpine"
stages:
- "linter"
- "testing"
linter:
stage: "linter"
image: "golangci/golangci-lint:latest-alpine"
script:
- "golangci-lint run"
testing:
stage: "testing"
needs:
- "linter"
image: "cr.simoncor.net/siempie/go-build:latest"
script:
- "go test cmd/logger/*.go"