Skip to content

Commit ed89830

Browse files
author
Petr Sramek
committed
test
1 parent f157c01 commit ed89830

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/test/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ runs:
6262
- name: 'Test with .NET CLI'
6363
shell: bash
6464
env:
65-
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)' || '' }}"
68-
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 }}
65+
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)' || '' }}
68+
run: dotnet test ${{ inputs.test-project-glob-pattern }} --configuration ${{ inputs.build-configuration }} --verbosity normal -- ${{ env.CODE_COVERAGE_ARGS }} ${{ env.RUN_SETTINGS_ARGS }} ${{ env.TRX_LOGGER_ARGS }} --results-directory ${{ inputs.test-results-directory }}
6969

7070
- name: 'Upload test results'
7171
if: ${{ inputs.upload-test-artifacts == 'true' }}

0 commit comments

Comments
 (0)