File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 9494
9595 - name : Test
9696 run : |
97- dotnet test --no-restore --verbosity normal -f ${{ matrix.framework }} ${{ matrix.coverage && '/p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov' || '' }} --logger "trx;LogFileName=${{ matrix.results }}"
98- shell : gitbash
97+ dotnet test --no-restore --verbosity normal -f ${{ matrix.framework }} \
98+ ${{ matrix.coverage && '/p:CollectCoverage=true' || '' }} \
99+ ${{ matrix.coverage && '/p:CoverletOutput=TestResults/' || '' }} \
100+ ${{ matrix.coverage && '/p:CoverletOutputFormat=lcov' || '' }} \
101+ --logger "trx;LogFileName=${{ matrix.results }}"
102+ shell : bash
99103
100104 - name : Upload test results
101105 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments