Skip to content

Feat :: STOMP 오류 핸들러 추가 #49

Feat :: STOMP 오류 핸들러 추가

Feat :: STOMP 오류 핸들러 추가 #49

Workflow file for this run

name: CI for seugi-server
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
permissions:
contents: read
jobs:
CI:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v3
- name: Set up Temurin JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
- name: Load gradle cache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build without test
run: ./gradlew clean build -x test