-
Notifications
You must be signed in to change notification settings - Fork 48
56 lines (51 loc) · 1.23 KB
/
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
52
53
54
55
56
name: Go lint
on:
push:
branches:
- main
- release-*
paths-ignore:
- 'docs/**'
- 'examples/**'
- '**.md'
- '**.svg'
- '.github/workflows/publish-docs.yml'
- 'mkdocs.yml'
pull_request:
branches:
- main
- release-*
paths-ignore:
- 'docs/**'
- 'examples/**'
- '**.md'
- '**.svg'
- '.github/workflows/publish-docs.yml'
- 'mkdocs.yml'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.6'
- name: Go caches
uses: actions/cache@v4
with:
key: ${{ runner.os }}-lint-go-caches-${{ hashFiles('go.sum') }}
path: |
~/go/pkg/mod
~/.cache/go-build
~/.cache/golangci-lint
- name: Check generated code to be consistent
run: make clean && make generate manifests clusterapi-manifests docs-generate-reference release && git diff --exit-code
- name: Run linter
env:
GOLANGCI_LINT_FLAGS: --out-format=github-actions
run: |
make lint