Exclude UI tests from Gradle check task in build workflow.

This commit is contained in:
Jonathan Gafner 2025-08-16 13:04:43 +03:00
parent 3593822ae7
commit a7ce21aa87

View File

@ -23,7 +23,7 @@ on:
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
# Prepare the environment and build the plugin # Prepare the environment and build the plugin
@ -109,7 +109,7 @@ jobs:
# Run tests # Run tests
- name: Run Tests - name: Run Tests
run: ./gradlew check run: ./gradlew check -x uiTest
# Collect Tests Result of failed tests # Collect Tests Result of failed tests
- name: Collect Tests Result - name: Collect Tests Result