https://github.com/woodpecker-ci/plugin-codecov
Woodpecker / Drone plugin to publish coverage to Codecov
https://github.com/woodpecker-ci/plugin-codecov
woodpecker-ci woodpecker-plugin woodpeckerci
Last synced: 8 months ago
JSON representation
Woodpecker / Drone plugin to publish coverage to Codecov
- Host: GitHub
- URL: https://github.com/woodpecker-ci/plugin-codecov
- Owner: woodpecker-ci
- License: apache-2.0
- Created: 2022-01-18T00:23:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T02:20:16.000Z (over 1 year ago)
- Last Synced: 2024-04-14T04:23:07.288Z (over 1 year ago)
- Topics: woodpecker-ci, woodpecker-plugin, woodpeckerci
- Language: Go
- Homepage: https://woodpecker-ci.org/plugins/Codecov
- Size: 1.2 MB
- Stars: 2
- Watchers: 6
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# plugin-codecov
Woodpecker plugin to send coverage reports to [Codecov](https://codecov.io/).
## Build
Build the binary with the following command:
```sh
export GOOS=linux
export GOARCH=amd64
export CGO_ENABLED=0go build -ldflags '-s -w -extldflags "-static"' -o plugin-codecov
```## Docker
Build the Docker image with the following command:
```sh
docker build -f docker/Dockerfile.alpine -t woodpeckerci/plugin-codecov:next-alpine .
```