mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
24 lines
436 B
YAML
24 lines
436 B
YAML
name: Go Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-go:
|
|
name: Run Go Tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.24.0
|
|
cache: false
|
|
|
|
- name: Run Go tests
|
|
run: go test -short ./...
|
|
env:
|
|
GOOS: linux
|
|
GOARCH: 386
|