name: golangci-lint on: push: tags: - v* branches: - main pull_request: permissions: contents: read jobs: golangci: permissions: contents: read # for actions/checkout to fetch code pull-requests: read # for golangci/golangci-lint-action to fetch pull requests name: lint runs-on: ubuntu-latest steps: - uses: actions/setup-go@fcdc43634adb5f7ae75a9d7a9b9361790f7293e2 # v2 with: go-version: ~1.18 - uses: actions/checkout@b0e28b5ac45a892f91e7d036f8200cf5ed489415 # v3 - name: golangci-lint uses: golangci/golangci-lint-action@537aa1903e5d359d0b27dbc19ddd22c5087f3fbc # v3 with: skip-go-installation: true args: --timeout=5m