feature/epic0-foundation #1

Merged
master merged 20 commits from feature/epic0-foundation into main 2025-11-05 13:44:59 +01:00
2 changed files with 8 additions and 6 deletions
Showing only changes of commit ef54924137 - Show all commits

View File

@@ -78,11 +78,13 @@ jobs:
with: with:
go-version: '1.24' go-version: '1.24'
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.8
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Run golangci-lint - name: Run golangci-lint
uses: golangci/golangci-lint-action@v3 run: golangci-lint run --timeout=5m
with:
version: v1.64.8
args: --timeout=5m
build: build:
name: Build name: Build

View File

@@ -1,7 +1,7 @@
# golangci-lint configuration # golangci-lint configuration
# See https://golangci-lint.run/usage/configuration/ # See https://golangci-lint.run/usage/configuration/
# Note: CI uses v1.64.8 which doesn't support version: 2 # Note: No version field - compatible with both v1.64.8 (CI) and v2.x (local)
# Local v2.x will work with this config but may show a deprecation warning # Local v2.x may show a deprecation warning but will work
run: run:
timeout: 5m timeout: 5m