refactor: GitHub Actions 워크플로우 최적화 완료 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality and SonarCloud Analysis | |
on: | |
pull_request: | |
jobs: | |
code_quality_analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Java and Gradlew | |
uses: ./.github/actions/setup-java-and-gradlew | |
with: | |
java-distribution: 'liberica' | |
java-version: '21' | |
java-package: 'jdk' | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Run Checkstyle | |
run: ./gradlew checkstyleMain checkstyleTest --info | |
- name: Run Tests and Generate JaCoCo Coverage Report | |
run: ./gradlew test jacocoTestReport jacocoTestCoverageVerification --info | |
env: | |
SPRING_PROFILES_ACTIVE: test | |
- name: Run SonarCloud Analysis | |
run: ./gradlew sonar --info | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |