Skip to content

update go-ethereum dependency #344

update go-ethereum dependency

update go-ethereum dependency #344

Workflow file for this run

name: Deployer
on:
push:
branches:
- main
paths:
- "ops/l2-genesis/**"
- ".github/workflows/deployer.yaml"
pull_request:
paths:
- "build/**"
- "bindings/**"
- "node/**"
- "ops/l2-genesis/**"
- ".github/workflows/deployer.yaml"
defaults:
run:
working-directory: "ops/l2-genesis"
jobs:
check:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Lint
run: |
rm -rf $HOME/.cache/golangci-lint
make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Run tests
run: make test