Skip to content

Commit

Permalink
Update actions/setup-dotnet from v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ousiax committed Mar 14, 2024
1 parent 3d71b01 commit dc2c455
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Display dotnet info
run: dotnet --info
- name: Leo.Data.Domain.Tests
run: dotnet test test/Leo.Data.Domain.Tests/ /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
run: dotnet test test/Leo.Data.Domain.Tests/ -p:CollectCoverage=true -p:CoverletOutputFormat=opencover
- name: Leo.Web.Api.Tests
run: dotnet test test/Leo.Web.Api.Tests/ /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
run: dotnet test test/Leo.Web.Api.Tests/ -p:CollectCoverage=true -p:CoverletOutputFormat=opencover

0 comments on commit dc2c455

Please sign in to comment.