Skip to content
This repository was archived by the owner on Jul 7, 2025. It is now read-only.

ASAP-425 공통 OAuth 핸들러(AbstractOAuthRetrieveHandler) 구현 및 Google, Kakao, Naver OAuth 핸들러 리팩토링 #176

ASAP-425 공통 OAuth 핸들러(AbstractOAuthRetrieveHandler) 구현 및 Google, Kakao, Naver OAuth 핸들러 리팩토링

ASAP-425 공통 OAuth 핸들러(AbstractOAuthRetrieveHandler) 구현 및 Google, Kakao, Naver OAuth 핸들러 리팩토링 #176

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
- name: Gradle Caching
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: Grant Execute Permission For Gradlew
run: chmod +x gradlew
- name: Build With Gradle
run: |
./gradlew build