From 29d3ddef06a3566e225f1ab1c9dd29f0d9fb71ca Mon Sep 17 00:00:00 2001 From: Jake Meiergerd Date: Wed, 6 Dec 2023 07:00:18 -0600 Subject: [PATCH] Restored testing to CI Build Job, for PR builds. (#784) --- .github/workflows/ci-build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 5e7d1727a..bd993413a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -43,6 +43,10 @@ jobs: run: dotnet build --no-restore --configuration Release DynamicData.sln working-directory: src + - name: Run Tests + run: dotnet test --no-restore --configuration Release DynamicData.sln + working-directory: src + - name: Pack run: dotnet pack --no-restore --configuration Release DynamicData.sln working-directory: src