Dependency Updates #265
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| env: | |
| SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
| GOLANGCI_LINT_VERSION: v1.57.2 | |
| jobs: | |
| lint: | |
| name: lint | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: ./go.mod | |
| cache: true # caching and restoring go modules and build outputs | |
| - name: Check that 'go mod tidy' was called before commit | |
| run: go mod tidy && git diff --exit-code | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v4 | |
| with: | |
| version: ${{ env.GOLANGCI_LINT_VERSION }} | |
| skip-cache: true # cache/restore is done by actions/setup-go@v3 step | |
| args: -v |