Skip to content

chore(deps): bump github.com/ethereum/go-ethereum from 1.13.12 to 1.13.15 #1054

chore(deps): bump github.com/ethereum/go-ethereum from 1.13.12 to 1.13.15

chore(deps): bump github.com/ethereum/go-ethereum from 1.13.12 to 1.13.15 #1054

Workflow file for this run

name: Coverage
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Report results to DeepSource
env:
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
run: |
go test -coverprofile=cover.out $(go list ./... | grep -v wasm) -timeout=30m
curl https://deepsource.io/cli | sh
./bin/deepsource report --analyzer test-coverage --key go --value-file ./cover.out