Skip to content

woodpecker-ci/plugin-codecov

plugin-codecov

Build status Docker Image Version (latest by date)

Woodpecker plugin to send coverage reports to Codecov.

Build

Build the Docker image with the following command:

docker build -f Dockerfile -t woodpeckerci/plugin-codecov:next .

Test

go test -race -coverprofile=coverage.out ./...

docker run --rm -it \
  -e CI=woodpecker \
  -e PLUGIN_TOKEN="dummy" \
  -e PLUGIN_DRY_RUN="true" \
  -v $(pwd):/woodpecker/src \
  -w /woodpecker/src \
  woodpeckerci/plugin-codecov:next