From 31ce62db63f238699868518a39cebec90dc01463 Mon Sep 17 00:00:00 2001 From: coli-geonwoo Date: Sun, 15 Dec 2024 18:05:05 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20test=20report=EC=97=90=20if=20always?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Dev_CI.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/Dev_CI.yml b/.github/workflows/Dev_CI.yml index 8a12741..ff29109 100644 --- a/.github/workflows/Dev_CI.yml +++ b/.github/workflows/Dev_CI.yml @@ -1,11 +1,14 @@ name: dev-ci on: + push: + branches: + - chore/#20 pull_request: branches: - develop -permissions: write-all +#permissions: write-all jobs: build-and-push: @@ -23,16 +26,8 @@ jobs: java-version: '17' distribution: 'temurin' - - name: Cache Gradle dependencies - uses: actions/cache@v4 - with: - path: | - ~/.gradle/caches - ~/.gradle/wrapper - key: | - ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} - restore-keys: | - ${{ runner.os }}-gradle- + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 - name: Grant Permission run: chmod +x ./gradlew @@ -55,6 +50,7 @@ jobs: - name: Report test Coverage to PR id: jacoco uses: madrapps/jacoco-report@v1.6.1 + if: always() with: title: 📝 Test Coverage Report paths: ${{ github.workspace }}/build/reports/jacoco/test/jacocoTestReport.xml