Skip to content

Commit

Permalink
fix: check 2 approaches
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Sep 4, 2023
1 parent 107fe71 commit e34e33f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ runs:
- name: Done report
if: inputs.parallel-finished == 'true'
shell: ${{ startsWith(runner.os, 'Windows') ? 'pwsh' : 'bash' }}
shell: ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
run: >-
coveralls done
${{ inputs.debug == 'true' && '--debug' || '' }}
Expand All @@ -124,7 +124,7 @@ runs:

- name: Coverage report
if: inputs.parallel-finished != 'true'
shell: ${{ startsWith(runner.os, 'Windows') ? 'pwsh' : 'bash' }}
shell: ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
run: >-
coveralls report
${{ inputs.debug == 'true' && '--debug' || '' }}
Expand Down

0 comments on commit e34e33f

Please sign in to comment.