Respect CI env like in other tests #151
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Go client | |
on: | |
push: | |
paths: | |
- clients/tfchain-client-go/** | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
sparse-checkout: clients/tfchain-client-go | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.20" | |
cache: false | |
# cache-dependency-path: clients/tfchain-client-go/go.sum | |
id: go | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
args: --timeout 3m --verbose | |
working-directory: clients/tfchain-client-go | |
- name: staticcheck | |
uses: dominikh/[email protected] | |
with: | |
version: "2022.1.3" | |
working-directory: clients/tfchain-client-go | |
env: | |
GO111MODULE: on | |
- name: gofmt | |
uses: Jerome1337/[email protected] | |
with: | |
gofmt-path: './clients/tfchain-client-go' | |
gofmt-flags: "-l -d" |