From 17c579a336058dcf2c2dd05351332c162ec6c535 Mon Sep 17 00:00:00 2001 From: Tornado Tech <54727692+Tornado-Technology@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:54:11 +1000 Subject: [PATCH] Fixed workflows integration tests --- .github/workflows/nuint-integration-tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nuint-integration-tests.yml b/.github/workflows/nuint-integration-tests.yml index 3a9a1f1..1b2478a 100644 --- a/.github/workflows/nuint-integration-tests.yml +++ b/.github/workflows/nuint-integration-tests.yml @@ -2,9 +2,7 @@ name: NUnit integration test on: push: - branches: [ master ] pull_request: - branches: [ master ] workflow_dispatch: env: @@ -37,7 +35,7 @@ jobs: run: dotnet tool restore - name: 🔨 Build and Test (Release) - run: dotnet test --no-build --configuration=Release Hypercube.UnitTests/Hypercube.UnitTests.csproj + run: dotnet test --configuration=Release Hypercube.UnitTests/Hypercube.UnitTests.csproj - name: 🔨 Build and Test (Debug) - run: dotnet test --no-build --configuration=Debug Hypercube.UnitTests/Hypercube.UnitTests.csproj + run: dotnet test --configuration=Debug Hypercube.UnitTests/Hypercube.UnitTests.csproj