From 10f58d13a29400e5f66c76563cb42fe2c0fb86f5 Mon Sep 17 00:00:00 2001 From: fabienpuissant Date: Sun, 8 Dec 2024 21:39:24 +0100 Subject: [PATCH] add unit test step in gradle ci Fix #11513 --- .../.github/workflows/github-actions-gradle.yml.mustache | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/resources/generator/ci/github/actions/.github/workflows/github-actions-gradle.yml.mustache b/src/main/resources/generator/ci/github/actions/.github/workflows/github-actions-gradle.yml.mustache index f749f1a11fb..7915ca2b85d 100644 --- a/src/main/resources/generator/ci/github/actions/.github/workflows/github-actions-gradle.yml.mustache +++ b/src/main/resources/generator/ci/github/actions/.github/workflows/github-actions-gradle.yml.mustache @@ -25,5 +25,7 @@ jobs: uses: ./.github/actions/setup - name: Setup Gradle uses: gradle/gradle-build-action@v2 - - name: 'Test: run tests' - run: ./gradlew clean integrationTest --no-daemon + - name: 'Test: run unit tests' + run: ./gradlew clean test --no-daemon + - name: 'Test: run integration tests' + run: ./gradlew integrationTest --no-daemon