see how long selfhosted performs in 32 bits

This commit is contained in:
Guillaume Ballet 2024-12-06 18:24:15 +01:00
parent f5fe324c3e
commit ed1b56bd5e
1 changed files with 9 additions and 1 deletions

View File

@ -18,7 +18,15 @@ jobs:
go-version: 1.23.0 go-version: 1.23.0
cache: false cache: false
- name: Run tests - 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: env:
GOOS: linux GOOS: linux
GOARCH: 386 GOARCH: 386