Skip to content

Commit

Permalink
Remove codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
dblanchette committed Apr 30, 2021
1 parent 4186968 commit 9ff34b4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ jobs:
run: go build -v

- name: Run Tests
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
bash ./test.sh
bash <(curl -s https://codecov.io/bash)
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# credentials-sync

![Build](https://github.com/coveooss/credentials-sync/workflows/Build/badge.svg?branch=master)
[![codecov](https://codecov.io/gh/coveooss/credentials-sync/branch/master/graph/badge.svg)](https://codecov.io/gh/coveooss/credentials-sync)
[![Go Report Card](https://goreportcard.com/badge/github.com/coveooss/credentials-sync)](https://goreportcard.com/report/github.com/coveooss/credentials-sync)

Sync credentials from various sources to various targets. Source credentials are defined and stored in standardized
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
echo "" > coverage.txt

for d in $(go list ./... | grep -v vendor); do
go test -coverprofile=profile.out -covermode=atomic $d
go test $d
if [ -f profile.out ]; then
cat profile.out | grep -v "_mock.go" >> coverage.txt
rm profile.out
Expand Down

0 comments on commit 9ff34b4

Please sign in to comment.