Skip to content

Commit

Permalink
chore: support explicit cli arguments (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Jun 7, 2023
1 parent 059e56d commit c7885c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Expand Up @@ -100,7 +100,7 @@ runs:
- name: Done report
if: inputs.parallel-finished == 'true'
shell: bash
run: coveralls --done ${{ inputs.debug == 'true' && '--debug' || '' }}
run: coveralls done ${{ inputs.debug == 'true' && '--debug' || '' }}
env:
COVERALLS_DEBUG: ${{ inputs.debug }}
COVERALLS_CARRYFORWARD_FLAGS: ${{ inputs.carryforward }}
Expand All @@ -115,12 +115,12 @@ runs:
if: inputs.parallel-finished != 'true'
shell: bash
run: >-
coveralls
coveralls report
${{ inputs.debug == 'true' && '--debug' || '' }}
${{ inputs.allow-empty == 'true' && '--allow-empty' || '' }}
${{ inputs.base-path && format('--base-path {0}', inputs.base-path) || '' }}
${{ (inputs.file || inputs.path-to-lcov) && format('--file {0}', inputs.file || inputs.path-to-lcov) || '' }}
${{ inputs.format && format('--format {0}', inputs.format) || '' }}
${{ inputs.file || inputs.path-to-lcov }}
env:
COVERALLS_DEBUG: ${{ inputs.debug }}
COVERALLS_CARRYFORWARD_FLAGS: ${{ inputs.carryforward }}
Expand Down

0 comments on commit c7885c0

Please sign in to comment.