Skip to content

modified readme

modified readme #6

Workflow file for this run

name: ci-test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20.x
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Start ganache-cli deterministically
run: docker run -d -p 8545:8545 trufflesuite/ganache-cli:latest -d
- name: Test
run: make test