fix!: UnmarshalJSON is limited to the default Tree bug #164
Workflow file for this run
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
# lint runs golangci-lint | |
name: lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release/** | |
env: | |
GO_VERSION: '1.21' | |
jobs: | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 8 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: golangci/[email protected] | |
with: | |
version: v1.54.0 | |
args: --timeout 10m | |
github-token: ${{ secrets.github_token }} |