Skip to content

Commit e3b5e10

Browse files
authored
Merge pull request #112 from cashfree/feature/go-test-update
update test workflow to remove coverage
2 parents 6038643 + c0d8f5f commit e3b5e10

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/pkg-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
go-version: '1.18'
1919

2020
- name: Test
21-
run: go mod tidy && clientid=$PG_CLIENT_ID clientsecret=$PG_CLIENT_SECRET go test -race -covermode atomic -coverprofile=covprofile ./...
21+
run: go mod tidy && clientid=$PG_CLIENT_ID clientsecret=$PG_CLIENT_SECRET go test -race ./...
2222
env:
2323
PG_CLIENT_ID: ${{ secrets.CLIENTID }}
2424
PG_CLIENT_SECRET: ${{ secrets.CLIENTSECRET }}
25-
- name: Install goveralls
26-
run: go install github.com/mattn/goveralls@latest
27-
- name: Send coverage
28-
env:
29-
COVERALLS_TOKEN: ${{ secrets.TOKEN_GITHUB }}
30-
run: goveralls -coverprofile=covprofile
25+
# - name: Install goveralls
26+
# run: go install github.com/mattn/goveralls@latest
27+
# - name: Send coverage
28+
# env:
29+
# COVERALLS_TOKEN: ${{ secrets.TOKEN_GITHUB }}
30+
# run: goveralls -coverprofile=covprofile

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Cashfree PG Go SDK
2-
![GitHub](https://img.shields.io/github/license/cashfree/cashfree-pg) ![Discord](https://img.shields.io/discord/931125665669972018?label=discord) ![GitHub last commit (branch)](https://img.shields.io/github/last-commit/cashfree/cashfree-pg/main) ![GitHub release (with filter)](https://img.shields.io/github/v/release/cashfree/cashfree-pg?label=latest) ![GitHub forks](https://img.shields.io/github/forks/cashfree/cashfree-pg) [![Coverage Status](https://coveralls.io/repos/github/cashfree/cashfree-pg/badge.svg?branch=main)](https://coveralls.io/github/cashfree/cashfree-pg?branch=main) [![GoDoc](https://godoc.org/github.com/cashfree/cashfree-pg/v4?status.svg)](https://godoc.org/github.com/cashfree/cashfree-pg/v4)
2+
![GitHub](https://img.shields.io/github/license/cashfree/cashfree-pg) ![Discord](https://img.shields.io/discord/931125665669972018?label=discord) ![GitHub last commit (branch)](https://img.shields.io/github/last-commit/cashfree/cashfree-pg/main) ![GitHub release (with filter)](https://img.shields.io/github/v/release/cashfree/cashfree-pg?label=latest) ![GitHub forks](https://img.shields.io/github/forks/cashfree/cashfree-pg) [![GoDoc](https://godoc.org/github.com/cashfree/cashfree-pg/v4?status.svg)](https://godoc.org/github.com/cashfree/cashfree-pg/v4)
33

44
The Cashfree PG Go SDK offers a convenient solution to access [Cashfree PG APIs](https://docs.cashfree.com/reference/pg-new-apis-endpoint) from a server-side Go applications.
55

0 commit comments

Comments
 (0)