build(deps): bump google.golang.org/grpc from 1.67.1 to 1.68.1 (#644) #1130
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__" |