Skip to content

[Feat] 로그인 api에 닉네임,이메일 응답 추가 #20

[Feat] 로그인 api에 닉네임,이메일 응답 추가

[Feat] 로그인 api에 닉네임,이메일 응답 추가 #20

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
pull_request:
branches: [ "develop" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
# 빌드 성공 여부만 체크 (테스트는 필요하면 켜면 됨)
- name: Build (skip tests)
run: ./gradlew clean build -x test