-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (28 loc) · 1.08 KB
/
go-lint-check.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
name: Lint and Check
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: Checkout codebase
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run GolangCI-Lint Scanner
uses: golangci/golangci-lint-action@v6
with:
# Required: the version of golangci-lint is required and must be specified without patch version.
version: v1.62
# Optional: working directory, useful for monorepos
# working-directory: ./...
# Optional: golangci-lint command line arguments.
args: --timeout 3m00s
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true