From c24b47a4bb19b7e406cf40d121945d7f6cd9fca0 Mon Sep 17 00:00:00 2001 From: karafra Date: Mon, 14 Feb 2022 19:49:24 +0100 Subject: [PATCH] :construction_worker: Added build to testing job --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54c94e8..a89775b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,6 @@ jobs: with: path: | ~/.nuget/packages - !~/.nuget/packages/unwanted key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} restore-keys: | ${{ runner.os }}-nuget- @@ -38,8 +37,10 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - - name: Restore project from cache + - name: Restore projects run: dotnet restore + - name: Build project + run: dotnet build - name: Run tests with coverage run: dotnet test --no-build --collect:"XPlat Code Coverage" - name: ReportGenerator