An open API service indexing awesome lists of open source software.

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

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=0

go 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 .
```