From f9c05398799f7ba5d27aa1c2330328d64ac31a90 Mon Sep 17 00:00:00 2001 From: shin-mallang Date: Mon, 13 Nov 2023 01:58:40 +0900 Subject: [PATCH] =?UTF-8?q?[#68]=20infra:=20CI=20=EC=9B=8C=ED=81=AC?= =?UTF-8?q?=ED=94=8C=EB=A1=9C=EC=9A=B0=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 57 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..137c2098 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,57 @@ +name: ✨ Mallang-Log Backend CI ✨ + +on: + push: + branches: + - main + + pull_request: + branches: + - main + +permissions: + checks: write + pull-requests: write + +jobs: + backend-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: ✨ JDK 17 설정 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + + - name: ✨ Gradle 의존성 캐싱 + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + + - name: ✨ Gradlew 권한 설정 + run: chmod +x ./gradlew + + - name: ✨ 테스트 진행 + run: ./gradlew test sonar --info + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + - name: ✨ 테스트 결과 Report + uses: EnricoMi/publish-unit-test-result-action@v2 + if: ${{ always() }} + with: + files: '**/build/test-results/**/*.xml' + + - name: ✨ 테스트 실패 Comment + uses: mikepenz/action-junit-report@v3 + if: always() + with: + report_paths: '**/build/test-results/test/TEST-*.xml'