-
Notifications
You must be signed in to change notification settings - Fork 62
55 lines (49 loc) · 1.12 KB
/
lint.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Lint
on:
push:
branches-ignore:
- renovate/**
paths:
- "**.go"
- "**.go.json"
- "go.mod"
- "go.sum"
- ".golangci.yaml"
- ".github/workflows/lint.yaml"
pull_request:
branches:
- master
paths:
- "**.go"
- "**.go.json"
- "go.mod"
- "go.sum"
- ".golangci.yaml"
- ".github/workflows/lint.yaml"
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: false
- name: Go Build Cache (lint)
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg
key: go-cache-119-${{ hashFiles('**/go.sum') }}-lint
restore-keys: |
go-cache-119-${{ hashFiles('**/go.sum') }}-
go-cache-119-
- run: go get -t ./...
- name: Run linters
uses: golangci/golangci-lint-action@v3
with:
version: v1.53.3
skip-pkg-cache: true
skip-build-cache: true