Skip to content

Fix :: Member 도메인 application 참조 오류 #47

Fix :: Member 도메인 application 참조 오류

Fix :: Member 도메인 application 참조 오류 #47

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