Skip to content

Merge pull request #132 from rjjatson/feature/payout-idempotency-key #106

Merge pull request #132 from rjjatson/feature/payout-idempotency-key

Merge pull request #132 from rjjatson/feature/payout-idempotency-key #106

Workflow file for this run

name: "coveralls"
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Send coverage to coveralls
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: "1.14"
- run: go mod download
- run: >
go test -race -covermode atomic -coverprofile=profile.cov \
. \
./account/... \
./balance/... \
./card/... \
./cardlesscredit/... \
./client/... \
./disbursement/... \
./ewallet/... \
./invoice/... \
./payout/... \
./recurringpayment/... \
./retailoutlet/... \
./utils/... \
./virtualaccount/... \
./pmsv2/... \
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go get github.com/mattn/goveralls
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github