ci: add debug info to vet step
Some checks failed
CI / Lint (push) Failing after 39s
CI / Test (push) Failing after 9m23s
CI / Build (push) Has been skipped

This commit is contained in:
xfy 2026-06-12 16:51:08 +08:00
parent 8953c0c85a
commit c2fe40330b

View File

@ -26,7 +26,6 @@ jobs:
GO_VERSION=$(grep '^go ' go.mod | awk '{print $2}')
curl -sL "${GO_MIRROR}/go${GO_VERSION}.linux-amd64.tar.gz" | tar -C /usr/local -xzf -
echo "/usr/local/go/bin" >> $GITHUB_PATH
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Check formatting
run: |
@ -39,7 +38,10 @@ jobs:
fi
- name: Run vet
run: go vet ./...
run: |
which go
go version
go vet ./...
test:
name: Test