From 228b79132c44cbbccfaaaaf249226ab72f58ba5c Mon Sep 17 00:00:00 2001 From: Lyndon Gabriel Date: Sat, 14 Dec 2024 09:02:01 -0500 Subject: [PATCH] Install dotnet 6 --- .github/workflows/test-net60.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-net60.yaml b/.github/workflows/test-net60.yaml index 1d8d5fa..8915f2b 100644 --- a/.github/workflows/test-net60.yaml +++ b/.github/workflows/test-net60.yaml @@ -8,6 +8,11 @@ jobs: uses: actions/checkout@v2 with: submodules: 'recursive' + - name: Setup dotnet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 6.0.x - name: Run the Core tests run: dotnet test $GITHUB_WORKSPACE/tests/Medidata.MAuth.CoreTests --framework net6.0 - name: Run the ASP.NET Core tests