From 781776c22858249cb710906140426ab50a3f15da Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Tue, 17 Mar 2020 11:08:17 +0000 Subject: [PATCH] Update .NET Core CI template Run a `dotnet restore` step, run tests. --- ci/dotnet-core.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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