mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
see how long selfhosted performs in 32 bits
This commit is contained in:
parent
f5fe324c3e
commit
ed1b56bd5e
1 changed files with 9 additions and 1 deletions
10
.github/workflows/go.yml
vendored
10
.github/workflows/go.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue