go-ethereum/.github/workflows/go.yml
2024-06-04 18:38:12 +02:00

23 lines
429 B
YAML

name: i386 linux tests
on:
push:
branches: [ disabled ]
pull_request:
branches: [ disabled ]
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.4
- name: Run tests
run: go test -short ./...
env:
GOOS: linux
GOARCH: 386