Skip to content

chore: Global Exception Handling #3

chore: Global Exception Handling

chore: Global Exception Handling #3

Workflow file for this run

name: 빌드 테스트
on:
pull_request:
types: [opened, synchronize, closed]
branches:
- 'develop'
- 'master'
jobs:
build:
name: "[CI] Check Build"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_TOKEN }}
submodules: true
- name: (Set Up) Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: (Set Up) Grant Execute permission for gradlew
run: chmod 777 gradlew