We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9019109 commit 1adccf7Copy full SHA for 1adccf7
renovate.json .github/renovate.json
.github/workflows/golangci-lint.yml
@@ -15,7 +15,13 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v3
18
+ - name: Determine Go version from go.mod
19
+ run: echo "GO_VERSION=$(grep "go 1." go.mod | cut -d " " -f 2)" >> $GITHUB_ENV
20
+ - name: Set up Go
21
+ uses: actions/setup-go@v3
22
+ with:
23
+ go-version: ${{ env.GO_VERSION }}
24
- name: golangci-lint
25
uses: golangci/golangci-lint-action@v3
26
with:
- args: --timeout=3m
27
+ args: --issues-exit-code=0 --timeout=3m ./...
0 commit comments