Merge pull request #432 from sge-network/release/v1.7.x #1208
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
GO_VERSION: '1.22' | |
jobs: | |
golangci: | |
name: Run golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Check out repository code | |
uses: actions/checkout@v4 | |
- | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
.github/** | |
Makefile | |
- | |
name: 🐿 Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
- | |
name: Run golangci-lint | |
if: env.GIT_DIFF | |
run: make lint | |
documentation-linter: | |
name: Run super-linter | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files | |
# within `super-linter`. | |
fetch-depth: 0 | |
- | |
name: Get git diff | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.md | |
go.mod | |
go.sum | |
Makefile | |
- | |
name: Run documentation linter | |
if: env.GIT_DIFF | |
run: make mdlint |