Skip to content

Commit

Permalink
Run tests on net8.0 (#7079)
Browse files Browse the repository at this point in the history
  • Loading branch information
glen-84 authored Apr 30, 2024
1 parent 7cdc047 commit 909212a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
- name: Run Build
id: run-build
run: dotnet build ${{ matrix.path }} --framework net7.0 --verbosity q --property WarningLevel=0
run: dotnet build ${{ matrix.path }} --framework net8.0 --verbosity q --property WarningLevel=0
timeout-minutes: 5

- name: Create directory for test results
Expand All @@ -205,7 +205,7 @@ jobs:
timeout-minutes: 15
continue-on-error: true
run: |
dotnet test ${{ matrix.path }} --no-build --framework net7.0 --verbosity q /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=./.coverage/${{ matrix.name }}.xml --logger "trx;LogFileName=./.test-results/${{ matrix.name }}.trx" /p:ExcludeByFile="**/test/**" 2>&1 | tee test_output.txt
dotnet test ${{ matrix.path }} --no-build --framework net8.0 --verbosity q /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=./.coverage/${{ matrix.name }}.xml --logger "trx;LogFileName=./.test-results/${{ matrix.name }}.trx" /p:ExcludeByFile="**/test/**" 2>&1 | tee test_output.txt
if [[ ${PIPESTATUS[0]} -ne 0 ]]; then
exit 1
fi
Expand Down

0 comments on commit 909212a

Please sign in to comment.