Skip to content

cleanup logs (#646) #1129

cleanup logs (#646)

cleanup logs (#646) #1129

Workflow file for this run

name: Test
on:
push:
branches:
- develop
tags:
- "v[0-9]+.[0-9]+.[0-9]+*" # Push events to matching tags v1.0.0, v1.0.1, v1.1.0, v2.0.0, etc.
pull_request:
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/setup-go@v4
with:
go-version: "1.21" # The Go version to download (if necessary) and use.
- name: test & coverage report creation
run: |
make test
make core-test
make signer-test
env:
ETH_RPC: ${{ secrets.ETH_RPC }}
OPT_RPC: ${{ secrets.OPT_RPC }}
ARB_RPC: ${{ secrets.ARB_RPC }}
CGO_CFLAGS: "-O -D__BLST_PORTABLE__"
CGO_CFLAGS_ALLOW: "-O -D__BLST_PORTABLE__"