From e2aea7ab0fc02adff8edb59c832f414206b3b6d2 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Thu, 6 Nov 2025 19:41:29 +0100 Subject: [PATCH] Added testing to deployment pipeline --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index db25c97..157cc1a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,9 @@ jobs: - name: Restore dependencies run: dotnet restore src/ + - name: Run tests + run: dotnet test src/ --configuration Release --no-build + - name: Build run: dotnet build src/ --configuration Release --no-restore