diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 3402b77d8..b50afecae 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,13 +3,13 @@ "isRoot": true, "tools": { "dotnet-stryker": { - "version": "3.10.0", + "version": "4.4.0", "commands": [ "dotnet-stryker" ] }, "csharpier": { - "version": "0.24.2", + "version": "0.29.2", "commands": [ "dotnet-csharpier" ] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 369ac6169..6cfa49db2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,14 +15,16 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 - - name: Setup .NET 6,7 and 8 + - name: Check out code + uses: actions/checkout@v3 + + - name: Setup .NET 6 and .NET 8 uses: actions/setup-dotnet@v3 with: dotnet-version: | 6.0.x - 7.0.x 8.0.x + - name: Build run: ./build.ps1 Compile - name: Lint Check