From bdada6d231464200f083c00dfecb7c3bb6671943 Mon Sep 17 00:00:00 2001 From: nwdorian Date: Fri, 12 Dec 2025 21:44:13 +0100 Subject: [PATCH] remove paths from build and test workflows and add no build flag to test workflow --- .github/workflows/build-validation.yml | 3 --- .github/workflows/test-validation.yml | 5 +---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build-validation.yml b/.github/workflows/build-validation.yml index c3dad0a..793cd3e 100644 --- a/.github/workflows/build-validation.yml +++ b/.github/workflows/build-validation.yml @@ -5,9 +5,6 @@ on: branches: - main - develop - paths: - - "**.cs" - - "**.csproj" env: DOTNET_VERSION: "10.0.x" # The .NET SDK version to use diff --git a/.github/workflows/test-validation.yml b/.github/workflows/test-validation.yml index 46b8f51..a348eb6 100644 --- a/.github/workflows/test-validation.yml +++ b/.github/workflows/test-validation.yml @@ -5,9 +5,6 @@ on: branches: - main - develop - paths: - - "**.cs" - - "**.csproj" env: DOTNET_VERSION: "10.0.x" # The .NET SDK version to use @@ -31,4 +28,4 @@ jobs: run: dotnet build --configuration Release --no-restore - name: Test - run: dotnet test --no-restore --verbosity normal + run: dotnet test --configuration Release --no-restore --no-build --verbosity normal