Cake.Codecov

Cake addin that extends Cake with ability to use Codecov.

#addin nuget:?package=Cake.Codecov&version=1.0.1

dotnet add package Cake.Codecov --version 1.0.1

<PackageReference Include="Cake.Codecov" Version="1.0.1" />

Aliases

Uploads coverage reports to Codecov. Note that, many CI services (like AppVeyor) do not require you to provide a Codecov upload token. However, TeamCity is a rare exception.

In order to use the commands for this addin, you will need to include the following in your cake script:

#tool nuget:?package=Codecov
#addin nuget:?package=Cake.Codecov

General

Codecov(CodecovSettings) Uploads coverage reports to Codecov using the given settings.
Codecov(IEnumerable<string>, string) Uploads coverage reports to Codecov by specifying the report files and Codecov token.
Codecov(IEnumerable<string>) Uploads coverage reports to Codecov by specifying the report files. Note that, many CI services (like AppVeyor) do not require you to provide a Codecov upload token. However, TeamCity is a rare exception.
Codecov(string, string) Uploads coverage report to Codecov by specifying the report file and Codecov token.
Codecov(string) Uploads coverage report to Codecov by specifying the report file. Note that, many CI services (like AppVeyor) do not require you to provide a Codecov upload token. However, TeamCity is a rare exception.