-
-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (41 loc) · 923 Bytes
/
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
name: linting
on:
push:
paths:
- "**.go"
- go.mod
- go.sum
branches: ['develop']
pull_request:
paths:
- "**.go"
- go.mod
- go.sum
branches: ['develop']
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Check out the source code
uses: actions/checkout@v3
- name: Restore the Go modules cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: go-${{ runner.os }}-${{ hashFiles('go.mod') }}
restore-keys: |
go-${{ runner.os }}-
- name: Verify the dependencies
run: |
go mod verify
go mod download
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51.0