-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (51 loc) · 1.48 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
58
59
name: Lint and Style Check
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: Lint and Style Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.1'
cache: false
- name: Debug Go environment
run: |
go version
go env
pwd
ls -la
- name: Install dependencies
run: |
go clean -modcache
go mod download
go mod tidy
go mod verify
echo "Listing all dependencies:"
go list -m all
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.0
- name: Debug project structure
run: |
echo "Current directory structure:"
tree -L 3 || true
echo "Content of go.mod:"
cat go.mod
- name: Run golangci-lint
run: |
echo "Running golangci-lint..."
golangci-lint run --timeout=5m \
--skip-files=".*\\.pb\\.go$,.*\\.gen\\.go$,.*\\.mock\\.go$,.*\\.tpl$,.*_gen\\.go$" \
--modules-download-mode=readonly \
--allow-parallel-runners=false \
--skip-dirs="vendor,third_party,internal" \
--skip-dirs-use-default \
--build-tags=go1.23 \
./...