From ed1b56bd5ec479ecaacc8d4eedb502618364e124 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Fri, 6 Dec 2024 18:24:15 +0100 Subject: [PATCH] see how long selfhosted performs in 32 bits --- .github/workflows/go.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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