Skip to content

[Setting] #7 - 엔티티 세팅 #4

[Setting] #7 - 엔티티 세팅

[Setting] #7 - 엔티티 세팅 #4

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Create application.yml
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yml
echo "${{ secrets.DATA }}" > ./data.sql
cat ./application-deploy.yml
- name: Build project
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash