From 0efbcf153a75824a6d962433b84f380300c4f073 Mon Sep 17 00:00:00 2001 From: Nick Babcock Date: Fri, 24 Jan 2025 19:36:34 -0600 Subject: [PATCH] Target .net 8.0 in CI The test project already targets .net 8.0, so CI needs to be updated as well. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62c80a9..61650dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: submodules: true - uses: actions/setup-dotnet@v4 with: - dotnet-version: '6.0.*' + dotnet-version: '8.0.x' - run: dotnet test if: matrix.os == 'ubuntu-latest' - run: dotnet test --filter 'Category!=integration'