Skip to content

chore(pectra): Update geth to 1.15.x for pectra #990

chore(pectra): Update geth to 1.15.x for pectra

chore(pectra): Update geth to 1.15.x for pectra #990

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Run unit tests and generate the coverage report
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@2024.1.1
- name: Lint
run: make lint