We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a6398 commit 0f54185Copy full SHA for 0f54185
.github/workflows/gate.yml
@@ -95,10 +95,10 @@ jobs:
95
- name: Test
96
run: |
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 }}"
+ ${{ matrix.coverage && '-p:CollectCoverage=true' || '' }} \
+ ${{ matrix.coverage && '-p:CoverletOutput=TestResults/' || '' }} \
+ ${{ matrix.coverage && '-p:CoverletOutputFormat=lcov' || '' }} \
+ --logger "trx;LogFileName=${{ matrix.results }}"
102
shell: bash
103
104
- name: Upload test results
0 commit comments