mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 00:18:28 +00:00
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
name: linter
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
branches:
|
|
- "main"
|
|
- 'release-**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
changes:
|
|
outputs:
|
|
should-run-linting: ${{ steps.changes.outputs.go == 'true' }}
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
|
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
|
|
id: changes
|
|
with:
|
|
filters: |
|
|
go:
|
|
- '**.go'
|
|
- 'go.*'
|
|
- '.github/workflows/lint.yml'
|
|
- '.golangci.yml'
|
|
|
|
golangci-lint:
|
|
needs: [changes]
|
|
if: github.event.pull_request.draft == false && needs.changes.outputs.should-run-linting == 'true'
|
|
name: Linting
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
|
|
|
|
# need to setup go toolchain explicitly
|
|
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
|
|
with:
|
|
go-version-file: go.mod
|
|
|
|
- name: golangci-lint
|
|
uses: reviewdog/action-golangci-lint@00311c26a97213f93f2fd3a3524d66762e956ae0 # v2
|
|
with:
|
|
tool_name: golangci-lint
|
|
|
|
skip-lint:
|
|
needs: [changes]
|
|
if: needs.changes.outputs.should-run-linting == 'false'
|
|
name: Linting
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- run: 'echo "No build required"'
|