From 61a3bd529268c922ee5195ed9fa1742299e49bb5 Mon Sep 17 00:00:00 2001 From: "Manuel Bl." Date: Fri, 6 Dec 2024 18:35:28 +0100 Subject: [PATCH] Multi-target tests --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3cbd503..be9c230 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -32,9 +32,9 @@ jobs: with: dotnet-version: ${{ matrix.dotnet-version }} - name: Restore test project - run: dotnet restore -p:TargetFramework=net${{ matrix.dotnet-version }} --verbosity normal QrCodeGeneratorTest + run: dotnet restore --no-dependencies -p:TargetFramework=net${{ matrix.dotnet-version }} --verbosity normal QrCodeGeneratorTest - name: Restore library - run: dotnet restore --no-dependencies -p:TargetFramework=netstandard2.0 --verbosity normal QrCodeGenerator + run: dotnet restore -p:TargetFramework=netstandard2.0 --verbosity normal QrCodeGenerator - name: Build library run: dotnet build --configuration Release --no-restore -p:TargetFramework=netstandard2.0 --verbosity normal QrCodeGenerator - name: Build test project