Skip to content

docs: make it clear that same addresses can be used in the Pool (#79) #237

docs: make it clear that same addresses can be used in the Pool (#79)

docs: make it clear that same addresses can be used in the Pool (#79) #237

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Go Build (CGO)
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.19.1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install make (Windows)
if: runner.os == 'Windows'
run: choco install -y make mingw
- name: Check
if: runner.os == 'Linux'
run: make check
- name: Upload Code Coverage
if: runner.os == 'Linux'
run: bash <(curl -s https://codecov.io/bash)