From d7c531ac592a7c9665af5b0c3a10fbfe6a5d5f1a Mon Sep 17 00:00:00 2001 From: Ibrahim Ali Date: Wed, 7 Aug 2019 13:08:23 -0700 Subject: [PATCH] add flags documentation --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index daa5d1c..91faec1 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ steps: with: token: ${{secrets.CODECOV_TOKEN}} #for private repos file: ./coverage.xml #optional + flags: unittests #optional ``` >**Note**: This assumes that you've set your Codecov token inside settings > secrets as `CODECOV_TOKEN`. If not, you can get an upload token for your specific repo on codecov.io. A token is *not* required for public repositories. @@ -44,14 +45,16 @@ jobs: with: token: ${{secrets.CODECOV_TOKEN}} file: ./coverage.xml + flags: unittests ``` ## Arguments -| Argument | Description | +| Input | Description | | :---: | :---: | | `token` | Used to authorize coverage report uploads | | `file` | Location of the coverage report | +| `flags` | Flag upload to group coverage metrics | ## License