Skip to content

[EX-02] 사용자 저장 API를 개발한다. #15

[EX-02] 사용자 저장 API를 개발한다.

[EX-02] 사용자 저장 API를 개발한다. #15

name: Static Analysis
on:
pull_request:
branches: [ main ]
jobs:
static_analysis:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 17 with Gradle cache
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: "gradle"
- name: Execute Static Analysis
run: |
./gradlew sonar \
-Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }} \
-Dsonar.organization=sonarqube-example \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.token=${{ secrets.SONAR_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}