[FEAT] 게시글 상세조회 시 토큰이 없는 경우에 대해 예외가 발생하는 로직을 예외가 발생하지 않도록 변경 #24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Glabal Sookmyung main CI | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: build | |
run: | | |
chmod +x gradlew | |
./gradlew build | |
shell: bash |