From c7885c00cb7ec0b8f9f5ff3f53cddb980f7a4412 Mon Sep 17 00:00:00 2001 From: Valentin Kiselev Date: Wed, 7 Jun 2023 16:46:58 +0300 Subject: [PATCH] chore: support explicit cli arguments (#179) --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 779de80b..c6355266 100644 --- a/action.yml +++ b/action.yml @@ -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 }} @@ -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 }}