Skip to content

Commit

Permalink
Fixup: Additional Test Args Passing Logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Jun 21, 2024
1 parent c397783 commit 1626e35
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 @@ -91,7 +91,7 @@ runs:
cargo +${{ inputs.rust-toolchain }} tarpaulin --all --out xml --engine llvm \
--features "${{ inputs.features }}" \
${{ inputs.no-default-features == 'true' && '--no-default-features' || '' }} \
-- ${{ inputs.additional-test-args }}
${{ inputs.additional-test-args }}
- name: Run Tests with cross
if: inputs.use-cross == 'true'
Expand All @@ -101,7 +101,7 @@ runs:
cross +${{ inputs.rust-toolchain }} test --all \
--features "${{ inputs.features }}" \
${{ inputs.no-default-features == 'true' && '--no-default-features' || '' }} \
-- ${{ inputs.additional-test-args }}
${{ inputs.additional-test-args }}
- name: Upload Coverage to Codecov
if: inputs.upload-coverage == 'true' && inputs.use-cross == 'false'
Expand Down

0 comments on commit 1626e35

Please sign in to comment.