Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set default values as strings per GH Action requirements #204

Merged
merged 1 commit into from May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 4 additions & 7 deletions action.yml
Expand Up @@ -38,7 +38,7 @@ inputs:
allow-empty:
description: "Don't fail when coverage report file is empty or contains no data"
required: false
default: false
default: 'false'
base-path:
description: 'The root folder of the project that originally ran the tests'
required: false
Expand All @@ -57,18 +57,15 @@ inputs:
debug:
description: 'Enable debug output'
required: false
default: false
default: 'false'
measure:
description: 'Show execution time of parsing and reporting'
required: false
default: false
default: 'false'
fail-on-error:
description: 'Whether to fail (exit code 1) on any issues while uploading the coverage'
required: false
default: true
outputs:
coveralls-api-result:
description: 'Result status of Coveralls API post.'
default: 'true'
branding:
color: 'green'
icon: 'percent'
Expand Down