diff --git a/ci/dotnet-core.yml b/ci/dotnet-core.yml index a925bc2..c2a722b 100644 --- a/ci/dotnet-core.yml +++ b/ci/dotnet-core.yml @@ -17,5 +17,9 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.101 - - name: Build with dotnet - run: dotnet build --configuration Release + - name: Install dependencies + run: dotnet restore + - name: Build + run: dotnet build --configuration Release --no-restore + - name: Test + run: dotnet test --no-restore --verbosity normal