From 613c88b8f72369251d9cb12cda1c045a6cee4047 Mon Sep 17 00:00:00 2001 From: Crombie Team Date: Tue, 5 Nov 2024 09:15:49 -0300 Subject: [PATCH] Update ci-build.yml --- .github/workflows/ci-build.yml | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index de72b91..666fd1e 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -2,7 +2,9 @@ name: CI Build on: push: - branches-ignore: [ main, master, develop ] + branches: [ master ] + workflow_dispatch: + jobs: build: strategy: @@ -49,20 +51,5 @@ jobs: - name: Build ${{ matrix.dotnet }} run: dotnet build --configuration Release --no-restore --framework ${{ matrix.dotnet }} - # test: - # needs: [build] - # runs-on: ubuntu-latest - # steps: - # - name: Checkout repository - # uses: actions/checkout@v3 - - # - name: Set up .NET SDK - # uses: actions/setup-dotnet@v3 - # with: - # dotnet-version: 6.0.x - - # - name: Install dependencies - # run: dotnet restore ILovePDF.sln - - # - name: Test - # run: dotnet test ILovePDF.sln --no-restore --verbosity normal + - name: Run tests + run: dotnet test --no-restore --verbosity normal --filter "FullyQualifiedName!=Tests.Edit.SignTests.Sign_RequestSignature_ShouldProccessOk&FullyQualifiedName!=Tests.Edit.SignTests.Sign_ComplexTest_ShouldProcessOk"