Skip to content

hotfix : 중복 검증 엔드 포인트의 접근 권한을 허용한다 #43

hotfix : 중복 검증 엔드 포인트의 접근 권한을 허용한다

hotfix : 중복 검증 엔드 포인트의 접근 권한을 허용한다 #43

Workflow file for this run

name: Backend Server CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: action checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew test