Skip to content

Commit 18fb22e

Browse files
author
Petr Sramek
committed
fix?
1 parent fcbc3f6 commit 18fb22e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/test/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ runs:
6363
shell: bash
6464
env:
6565
TRX_LOGGER_ARGS: "${{ inputs.test-result-logger != '' && ' --report-trx' || '' }}"
66-
RUN_SETTINGS_ARGS: "${{ inputs.test-runsettings-path != '' && '--settings inputs.test-runsettings-path' || '' }}"
67-
CODE_COVERAGE_ARGS: "${{ inputs.collect-code-coverage == 'true' && '--coverage --coverage-output-format inputs.code-coverage-output-format' || '' }}"
66+
RUN_SETTINGS_ARGS: "${{ inputs.test-runsettings-path != '' && '--settings {{ inputs.test-runsettings-path }}' || '' }}"
67+
CODE_COVERAGE_ARGS: "${{ inputs.collect-code-coverage == 'true' && '--coverage --coverage-output-format {{ inputs.code-coverage-output-format }}' || '' }}"
6868
run: dotnet test ${{ inputs.test-project-glob-pattern }} --configuration ${{ inputs.build-configuration }} --verbosity normal -- ${{ env.CODE_COVERAGE_ARGS }} ${{ env.RUN_SETTINGS_ARGS }} --results-directory ${{ inputs.test-results-directory }}
6969

7070
- name: 'Upload test results'

0 commit comments

Comments
 (0)