Skip to content

[CLOUD-722] Set default version to 3.7.1 (#302) #784

[CLOUD-722] Set default version to 3.7.1 (#302)

[CLOUD-722] Set default version to 3.7.1 (#302) #784

Workflow file for this run

name: GoLang Linting
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '**.go'
- '.github/workflows/**'
push:
jobs:
golint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
# See also: https://github.com/actions/setup-go/pull/62
- run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: golangci/[email protected]
with:
version: 'v1.55.2'
args: --timeout=30m0s