Skip to content

Return simulated block value in validation api #602

Return simulated block value in validation api

Return simulated block value in validation api #602

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
env:
CGO_CFLAGS_ALLOW: "-O -D__BLST_PORTABLE__"
CGO_CFLAGS: "-O -D__BLST_PORTABLE__"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.21.4
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.2
- name: Lint
run: make lint
- name: Ensure go mod tidy runs without changes
run: |
go mod tidy
git diff-index HEAD
git diff-index --quiet HEAD
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.21.4
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test ./core ./miner/... ./internal/ethapi/... ./builder/... ./eth/block-validation/...
- name: Build
run: make geth