feat: 사용자 추천 API 정책 변경으로 비회원도 사용자 추천 나타나도록 API 수정 #309
Workflow file for this run
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: CI workflow | |
on: | |
pull_request: | |
branches: [ "dev", "prod" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 체크아웃 | |
uses: actions/checkout@v4 | |
- name: JDK 셋업 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
cache: 'gradle' | |
distribution: 'corretto' | |
- name: Gradle 셋업, 빌드, 캐시 | |
uses: burrunan/gradle-cache-action@c15634bb25b7284dc084f38dff4e838048b7feaf | |
with: | |
arguments: build | |
properties: | | |
--build-cache | |
--parallel |