From a41e431daf41551a4c51639fd753b129b6c002fe Mon Sep 17 00:00:00 2001 From: hyeda2020 <139141270+hyeda2020@users.noreply.github.com> Date: Wed, 29 Oct 2025 16:11:28 +0900 Subject: [PATCH] Disable test execution in CI workflow Comment out the test execution step in the CI workflow. --- .github/workflows/backend-cicd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-cicd.yaml b/.github/workflows/backend-cicd.yaml index 127c8f5..c1b4033 100644 --- a/.github/workflows/backend-cicd.yaml +++ b/.github/workflows/backend-cicd.yaml @@ -107,8 +107,8 @@ jobs: - name: Build with Gradle run: ./gradlew ${{ matrix.service }}:build -x test - - name: Run tests - run: ./gradlew ${{ matrix.service }}:test + # - name: Run tests + # run: ./gradlew ${{ matrix.service }}:test - name: Build JAR run: ./gradlew ${{ matrix.service }}:bootJar