Skip to content

[DPMBE-110] fix : 도메인 이벤트 발행시 트랜잭션 어노테이션 스프링껄로 변경 #201

[DPMBE-110] fix : 도메인 이벤트 발행시 트랜잭션 어노테이션 스프링껄로 변경

[DPMBE-110] fix : 도메인 이벤트 발행시 트랜잭션 어노테이션 스프링껄로 변경 #201

Workflow file for this run

name: CI_Check
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
kotlin-version: [ 1.5.31 ]
java-version: [ 11 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Kotlin
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
kotlin-version: ${{ matrix.kotlin-version }}
distribution: 'adopt'
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Start containers # test 돌릴때 레디스 필요
run: docker-compose up -d
- name: spotless check
run: ./gradlew spotlessCheck --no-daemon
- name: test and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew test sonar --info --stacktrace --no-daemon