diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d642600784..efe7ae96a9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,15 @@ jobs: go-version: 1.23.0 cache: false - name: Run tests - run: go test -short ./... + run: | + git submodule update --init --depth 1 --recursive + go version + go run build/ci.go lint + go run build/ci.go check_tidy + go run build/ci.go check_generate + go run build/ci.go check_baddeps + go run build/ci.go install -dlgo + go run build/ci.go test -dlgo -short env: GOOS: linux GOARCH: 386