This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
Return simulated block value in validation api #608
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
- 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 |