diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 987eec4..e93a91a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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