Skip to content

*: add timestamp in MakeSigner #2

*: add timestamp in MakeSigner

*: add timestamp in MakeSigner #2

Workflow file for this run

name: Go
on:
push:
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make geth
- name: Test
run: go test ./core/... ./miner ./eth/... ./rpc ./internal/ethapi/... ./les/...
- name: Lint
run: make lint