This commit is contained in:
Florian Forster 2025-02-25 22:38:17 +01:00
parent d85a154008
commit 562eada22a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ issues:
run: run:
concurrency: 4 concurrency: 4
timeout: 10m timeout: 10m
go: '1.22' go: '1.24'
linters: linters:
enable: enable:
# Simple linter to check that your code does not contain non-ASCII identifiers [fast: true, auto-fix: false] # Simple linter to check that your code does not contain non-ASCII identifiers [fast: true, auto-fix: false]

View File

@ -41,7 +41,7 @@ COPY .git/ ./.git/
RUN golangci-lint run \ RUN golangci-lint run \
--timeout 10m \ --timeout 10m \
--config ./.golangci.yaml \ --config ./.golangci.yaml \
--out-format=github-actions \ --out-format=colored-line-number \
--concurrency=$(getconf _NPROCESSORS_ONLN) --concurrency=$(getconf _NPROCESSORS_ONLN)
FROM base AS unit-test FROM base AS unit-test