Skip to content

Provide more detail to the output of --help #72

Provide more detail to the output of --help

Provide more detail to the output of --help #72

Workflow file for this run

name: "Lint"
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**.go"
- go.mod
- go.sum
- .github/workflows/lint.yml
merge_group:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- "**.go"
- go.mod
- go.sum
- .github/workflows/lint.yml
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8