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:
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