We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d1556 commit aed0610Copy full SHA for aed0610
.github/workflows/ci.yml
@@ -56,11 +56,16 @@ jobs:
56
lint:
57
name: Lint
58
runs-on: ubuntu-20.04
59
+ needs: vars
60
steps:
61
- name: Checkout Repository
62
uses: actions/checkout@v3
63
+ - name: Setup Golang Environment
64
+ uses: actions/setup-go@v3
65
+ with:
66
+ go-version: ${{ needs.vars.outputs.go_version }}
67
- name: Lint Code
- uses: golangci/golangci-lint-action@v2
68
+ uses: golangci/golangci-lint-action@v3.1.0
69
with:
70
args: --timeout ${{ env.GOLANGCI_TIMEOUT }}
71
0 commit comments