ci: 1 #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ | |
./... |