From a7ce21aa871f5803246f350ec942c17f81871910 Mon Sep 17 00:00:00 2001 From: Jonathan Gafner Date: Sat, 16 Aug 2025 13:04:43 +0300 Subject: [PATCH] Exclude UI tests from Gradle check task in build workflow. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1548480..10aa685 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true - + jobs: # Prepare the environment and build the plugin @@ -109,7 +109,7 @@ jobs: # Run tests - name: Run Tests - run: ./gradlew check + run: ./gradlew check -x uiTest # Collect Tests Result of failed tests - name: Collect Tests Result