Skip to content

Sighash fix + sighash example #23

Sighash fix + sighash example

Sighash fix + sighash example #23

Workflow file for this run

name: Coverage
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- '1.22'
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- name: Run Coverage Profile
run: |
go test -v -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/[email protected]
with:
path-to-profile: profile.cov
flag-name: Go-${{ matrix.go }}
parallel: true
# notifies that all test jobs are finished.
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/[email protected]
with:
parallel-finished: true