2023-04-17 22:38:24 +00:00
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
# For now, only lint pull requests, not the main branches.
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
# TODO(andrew): enable for main branch after an initial waiting period.
|
|
|
|
#push:
|
|
|
|
# branches:
|
|
|
|
# - main
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: read
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-23 20:52:19 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-04-17 22:38:24 +00:00
|
|
|
|
2024-09-23 21:14:49 +00:00
|
|
|
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
2023-04-17 22:38:24 +00:00
|
|
|
with:
|
|
|
|
go-version-file: go.mod
|
|
|
|
cache: false
|
|
|
|
|
|
|
|
- name: golangci-lint
|
2024-08-22 03:00:31 +00:00
|
|
|
# Note: this is the 'v6.1.0' tag as of 2024-08-21
|
|
|
|
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86
|
2023-04-17 22:38:24 +00:00
|
|
|
with:
|
2024-08-22 03:00:31 +00:00
|
|
|
version: v1.60
|
2023-04-17 22:38:24 +00:00
|
|
|
|
|
|
|
# Show only new issues if it's a pull request.
|
|
|
|
only-new-issues: true
|