-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (42 loc) · 1.11 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
name: Run Linter
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-go@v2
with:
go-version: 1.21
- uses: arduino/setup-protoc@v1
with:
version: 3.17
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Files
run: |
go generate ./...
- name: goimports
run: |
go run golang.org/x/tools/cmd/goimports@latest -w .
find . -name go.mod -execdir go mod tidy \;
if [ -n "$(git status --porcelain)" ]; then
echo 'To fix this check, run "goimports -w . && find . -name go.mod -execdir go mod tidy \;"'
git status # Show the files that failed to pass the check.
exit 1
fi
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.61
args: --timeout=3m
skip-pkg-cache: true
skip-build-cache: true