diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad8397a..e94e324 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,5 +43,8 @@ jobs: with: dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel + - name: Restore + run: dotnet restore S7.Net.UnitTest + - name: Test - run: dotnet test --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }} \ No newline at end of file + run: dotnet test --no-restore --verbosity normal --logger GitHubActions --framework ${{ matrix.test-framework }} \ No newline at end of file