-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (42 loc) · 1.45 KB
/
golangci-lint.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: golangci-lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main, feat/*, rc/* ]
permissions:
contents: read
jobs:
golangci:
name: golangci linter
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: 1.20.7
cache: false
id: go
- name: Checkout mx-chain-go
uses: actions/checkout@v4
with:
repository: 'multiversx/mx-chain-go'
ref: 'feat/chain-go-sdk'
path: 'mx-chain-go'
- name: Checkout mx-chain-simulator-go
uses: actions/checkout@v4
with:
path: 'mx-chain-simulator-go'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.57.2
# Optional: working directory, useful for monorepos
working-directory: mx-chain-simulator-go
# Optional: golangci-lint command line arguments.
args: --timeout 10m0s --max-issues-per-linter 0 --max-same-issues 0 --print-issued-lines
# Optional: show only new issues if it's a pull request. The default value is `false`.
only-new-issues: true
# Optional: if set to true then the action will use pre-installed Go
# skip-go-installation: true