Skip to content

Commit

Permalink
Minor changes to the dotnet.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matzefriedrich committed Sep 27, 2024
1 parent bce26f5 commit 8e64d0a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -26,8 +29,8 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --no-restore --framework net8.0-windows --configuration Release
run: dotnet build --configuration Release

- name: Run unit tests
run: |
dotnet test --no-build --framework net8.0-windows --configuration Release --verbosity normal
dotnet test --framework net8.0-windows --configuration Release --verbosity normal

0 comments on commit 8e64d0a

Please sign in to comment.