Skip to content

Bump github.com/0xPolygonHermez/zkevm-node from 0.6.8-RC8 to 0.7.1-RC3 #1390

Bump github.com/0xPolygonHermez/zkevm-node from 0.6.8-RC8 to 0.7.1-RC3

Bump github.com/0xPolygonHermez/zkevm-node from 0.6.8-RC8 to 0.7.1-RC3 #1390

Workflow file for this run

name: Test
on:
push:
branches:
- main
- master
- develop
- update-external-dependencies
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [ 1.21.x ]
goarch: [ "amd64" ]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
env:
GOARCH: ${{ matrix.goarch }}
- name: Test
run: make test
- name: Benchmark Test
run: make bench