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