-
Notifications
You must be signed in to change notification settings - Fork 596
57 lines (53 loc) · 1.27 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
57
name: Lint
on:
pull_request:
push:
branches:
- main
- concentrated-liquidity-main
env:
GO_VERSION: "1.22"
GIT_DIFF:
jobs:
golangci:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
.github/**
Makefile
- name: 🐿 Setup Golang
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
- name: Run golangci-lint
if: env.GIT_DIFF
run: make lint-all
documentation-linter:
name: Run super-linter
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files
# within `super-linter`.
fetch-depth: 0
- name: Get git diff
uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.md
go.mod
go.sum
Makefile
- name: Run documentation linter
if: env.GIT_DIFF
run: make lint-mdlint