From bd6a6cf177c6455ef32d88f824d784c48c699639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= <72068105+Sandoun@users.noreply.github.com> Date: Thu, 6 Jul 2023 23:04:40 +0200 Subject: [PATCH] Fixed missing dotnet 7 --- .github/workflows/test-pipeline.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-pipeline.yml b/.github/workflows/test-pipeline.yml index d5ff4a4..74872bb 100644 --- a/.github/workflows/test-pipeline.yml +++ b/.github/workflows/test-pipeline.yml @@ -30,7 +30,9 @@ jobs: - name: 'Setup dotnet' uses: actions/setup-dotnet@v2 with: - dotnet-version: '6.0.x' + dotnet-version: | + 6.0.x + 7.0.x - name: 'Run tests' run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=../Builds/TestResults/coverage.opencover.xml