From 44d28775c021544c47a212e6f19de6d75015a322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stef=C3=A1n=20J=C3=B6kull=20Sigur=C3=B0arson?= Date: Wed, 8 Jan 2025 14:37:20 +0000 Subject: [PATCH] Make sure we also install .net 6 for the tests (#706) --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f748435e5..373050424 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Setup dotnet + - name: Setup dotnet 6 + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '6.x' + + - name: Setup dotnet 8 uses: actions/setup-dotnet@v4 with: dotnet-version: '8.x'