Skip to content

[FIX] entity 수정 #97

[FIX] entity 수정

[FIX] entity 수정 #97

Workflow file for this run

name: pr-check
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: Set Up Environment Variables
run: |
cd src/main/resources
touch application-secret.properties
echo "${{ secrets.ENV }}" >> application-secret.properties
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash
- name: Build with Gradle
run: ./gradlew build -x test
shell: bash