Skip to content

7/merge by @renovate[bot] lint #5

7/merge by @renovate[bot] lint

7/merge by @renovate[bot] lint #5

Workflow file for this run

name: lint
run-name: ${{ github.ref_name }} by @${{ github.actor }} ${{ github.workflow }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
paths:
- .github/workflows/lint.yaml
- "**/*.go"
- .golangci.yaml
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Golangci-lint
uses: golangci/golangci-lint-action@v5
with:
version: v1.57.2
args: --allow-parallel-runners