build(deps): bump the github group across 1 directory with 3 updates #58
Workflow file for this run
This file contains hidden or 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: Golang linters | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "develop" | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| jobs: | |
| nilaway: | |
| name: Nilaway Linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| cache: true | |
| - name: Install Nilaway | |
| run: go install go.uber.org/nilaway/cmd/nilaway@latest | |
| - name: Nilaway | |
| # This will fail for a while. Lots of work needs to go in to resolve the callsites. | |
| # Long-term the bypass below should be removed. | |
| continue-on-error: true | |
| run: nilaway ./... |