You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Upload your coverage reports to Codecov without dealing with complex configurations. This orb helps you get coverage results quickly so that you can breathe easier and commit your code with confidence.
4
+
5
+
commands:
6
+
upload:
7
+
parameters:
8
+
conf:
9
+
description: Used to specify the location of the .codecov.yml config file
10
+
type: string
11
+
default: ".codecov.yml"
12
+
file:
13
+
description: Path to the code coverage data file to upload.
14
+
type: string
15
+
flags:
16
+
description: Flag the upload to group coverage metrics (e.g. unittests | integration | ui,chrome)
17
+
type: string
18
+
default: ""
19
+
token:
20
+
description: Set the private repository token (defaults to environment variable $CODECOV_TOKEN)
21
+
type: string
22
+
default: ${CODECOV_TOKEN}
23
+
upload_name:
24
+
description: Custom defined name of the upload. Visible in Codecov UI
0 commit comments