This repository was archived by the owner on Aug 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,6 @@ install:
4141 git clone _old $TRAVIS_REPO_SLUG;
4242 cd $TRAVIS_REPO_SLUG;
4343 fi
44- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
45- go install github.com/mattn/goveralls;
46- fi
4744
4845script :
4946 - ' internal/runtests.sh'
Original file line number Diff line number Diff line change 22
33[ ![ Build Status] ( https://travis-ci.com/google/wire.svg?branch=master )] [ travis ]
44[ ![ godoc] ( https://godoc.org/github.com/google/wire?status.svg )] [ godoc ]
5- [ ![ Coverage Status] ( https://coveralls.io/repos/github/google/wire/badge.svg?branch=master )] ( https://coveralls.io/github/google/wire?branch=master )
5+ [ ![ Coverage] ( https://codecov.io/gh/google/wire/branch/master/graph/badge.svg )] ( https://codecov.io/gh/google/wire )
6+
67
78Wire is a code generation tool that automates connecting components using
89[ dependency injection] [ ] . Dependencies between components are represented in
Original file line number Diff line number Diff line change 2424result=0
2525
2626# Run Go tests. Only do coverage for the Linux build
27- # because it is slow, and Coveralls will only save the last one anyway.
27+ # because it is slow, and codecov will only save the last one anyway.
2828if [[ " $TRAVIS_OS_NAME " == " linux" ]]; then
2929 go test -race -coverpkg=./... -coverprofile=coverage.out ./... || result=1
3030 if [ -f coverage.out ]; then
31- goveralls -coverprofile=coverage.out -service=travis-ci
3231 bash <( curl -s https://codecov.io/bash)
3332 fi
3433 # Ensure that the code has no extra dependencies (including transitive
You can’t perform that action at this time.
0 commit comments