Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Apr 24, 2024
1 parent bf6ee49 commit 4a80473
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build -c Release --no-restore --framework net${{ matrix.dotnet-version }}.0
run: |
dotnet restore
dotnet build -c Release --no-restore --framework net${{ matrix.dotnet-version }}.0
- name: Test
run: dotnet test -c Release --no-build --verbosity normal --framework net${{ matrix.dotnet-version }}.0

0 comments on commit 4a80473

Please sign in to comment.