Skip to content

Commit

Permalink
Increase log level during test runs.
Browse files Browse the repository at this point in the history
  • Loading branch information
GinoCanessa committed Sep 12, 2024
1 parent 550185b commit 2436f12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,22 @@ jobs:
if: runner.arch == 'X86'
run: |
dotnet restore -a x86
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a x86
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a x86
- name: Restore, build, and test x64
if: runner.arch == 'X64'
run: |
dotnet restore -a x64
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a x64
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a x64
- name: Restore, build, and test ARM
if: runner.arch == 'ARM'
run: |
dotnet restore -a arm
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a arm
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a arm
- name: Restore, build, and test ARM64
if: runner.arch == 'ARM64'
run: |
dotnet restore -a arm64
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity normal --filter "RequiresExternalRepo!=true" -a arm64
dotnet test --configuration Release --no-restore --framework net8.0 --verbosity detailed --filter "RequiresExternalRepo!=true" -a arm64

0 comments on commit 2436f12

Please sign in to comment.