mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
Update test.yml
This commit is contained in:
parent
d4753c7753
commit
c4c27a50d1
1 changed files with 18 additions and 5 deletions
23
.github/workflows/test.yml
vendored
23
.github/workflows/test.yml
vendored
|
|
@ -1,11 +1,24 @@
|
||||||
name: Test Runner
|
name: Go Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test-go:
|
||||||
|
name: Run Go Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check runner
|
- uses: actions/checkout@v4
|
||||||
run: echo "Runner is working!"
|
- 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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue