Skip to content

Bump github.com/ethereum/go-ethereum from 1.10.13 to 1.12.1 #37

Bump github.com/ethereum/go-ethereum from 1.10.13 to 1.12.1

Bump github.com/ethereum/go-ethereum from 1.10.13 to 1.12.1 #37

Workflow file for this run

name: End to end tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test-with-cache:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build testing CLI
run: go build -o ./test-cli ./resolution
- name: End-to-end test
run: go test