Skip to content

Implementing a new Proof Type for Raw IPFS Nodes #189

Implementing a new Proof Type for Raw IPFS Nodes

Implementing a new Proof Type for Raw IPFS Nodes #189

Workflow file for this run

name: Test Coverage
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
cov:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/[email protected]
- uses: actions/setup-go@v5
with:
go-version: 1.22.0 # The Go version to download (if necessary) and use.
- name: Get Coverage
run: |
go test ./... -timeout=30m -cover -coverprofile coverage.out
cat coverage.out | grep -v ".pb.go" > coverage2.out
cat coverage2.out | grep -v ".pb.gw.go" > coverage3.out
go tool cover -func coverage3.out
rm coverage2.out
rm coverage.out
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV }}