Skip to content

[Chore][jjaeroong]: 스웨거 PLANNING에서 PLAN으로 변경 #312

[Chore][jjaeroong]: 스웨거 PLANNING에서 PLAN으로 변경

[Chore][jjaeroong]: 스웨거 PLANNING에서 PLAN으로 변경 #312

Workflow file for this run

name: Run Tests
on:
push:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Make application.yml
run: |
cd ./src/main/resources
echo "${{ secrets.APPLICATION_YML }}" > ./application.yml
shell: bash