Skip to content

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

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

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

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 --info --stacktrace
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_PROJECT_KEY: ${{ secrets.SONAR_PROJECT_KEY }}