feat: initialize golang project template with docker and ci/cd
Some checks failed
CI / Lint (push) Failing after 45s
CI / Test (push) Failing after 10s
CI / Build (push) Has been skipped
CI / Docker Build (push) Has been skipped

This commit is contained in:
2026-01-12 10:47:04 +01:00
parent 12473662e8
commit 6ef83e18f8
11 changed files with 372 additions and 1 deletions

21
.golangci.yml Normal file
View File

@@ -0,0 +1,21 @@
# Options for analysis running.
version: 2
run:
timeout: 5m
linters:
enable:
- errcheck
- govet
- ineffassign
- staticcheck
- unused
- misspell
- unconvert
- unparam
linters-settings:
govet:
check-shadowing: true
gofmt:
simplify: true