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