diff --git a/.github/workflows/dotnet-test.yml b/.github/workflows/dotnet-test.yml index 0ba285f0..9953778a 100644 --- a/.github/workflows/dotnet-test.yml +++ b/.github/workflows/dotnet-test.yml @@ -14,17 +14,16 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - dotnet-version: ["8.0.x", "9.0.x"] + dotnet-version: ["6.0.x", "8.0.x"] steps: - uses: actions/checkout@v4 - name: Setup dotnet uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ matrix.dotnet-version }} - - name: Install tools + - name: Restore tools run: | - dotnet tool update dotnet-coverage - dotnet tool update dotnet-reportgenerator-globaltool + dotnet tool restore - name: Install dependencies run: dotnet restore - name: Build