Skip to content

[Refactor/406] 개인/생일 일정 생성 시 participant 정보도 업데이트 되도록 수정 #293

[Refactor/406] 개인/생일 일정 생성 시 participant 정보도 업데이트 되도록 수정

[Refactor/406] 개인/생일 일정 생성 시 participant 정보도 업데이트 되도록 수정 #293

Workflow file for this run

name: 🏗️ CI
on:
pull_request:
branches:
- master
- dev
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Cache Gradle
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
shell: bash
run: chmod +x gradlew
- name: Build with Gradle
shell: bash
run: |
./gradlew clean build --parallel --stacktrace --info -x test