From 09583c1d5a06479b73ad361adf4c0e7d1586d91d Mon Sep 17 00:00:00 2001 From: David Pine Date: Mon, 4 Apr 2022 12:11:47 -0500 Subject: [PATCH] Minor fix --- .github/workflows/build-validation.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-validation.yml b/.github/workflows/build-validation.yml index c265ec7..ee538be 100644 --- a/.github/workflows/build-validation.yml +++ b/.github/workflows/build-validation.yml @@ -56,6 +56,14 @@ jobs: needs: build steps: + - uses: actions/checkout@v2 + + - name: Setup .NET 6.0 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.x + include-prerelease: true + - name: Run tests run: | dotnet test ./tests/Blazor.SourceGenerators.Tests/Blazor.SourceGenerators.Tests.csproj --verbosity normal