Skip to content

Commit d5a6398

Browse files
author
Alex Peck
committed
isolate
1 parent aea7bf2 commit d5a6398

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/gate.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,12 @@ jobs:
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

0 commit comments

Comments
 (0)