Skip to content

Commit

Permalink
[#68] infra: CI 워크플로우 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-mallang committed Nov 12, 2023
1 parent 51fc6e0 commit f9c0539
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit f9c0539

Please sign in to comment.