Skip to content

Role, Member 도메인 내 필요 엔티티, 레포지토리 작성 #9

Role, Member 도메인 내 필요 엔티티, 레포지토리 작성

Role, Member 도메인 내 필요 엔티티, 레포지토리 작성 #9

Workflow file for this run

name: Check PR
on:
pull_request
permissions:
checks: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'gradle'
- name: Check Build
run: ./gradlew clean build -x test
- name: Run test
run: ./gradlew test
- name: Add coverage to PR
id: jacoco
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/build/reports/jacoco/test/jacocoTestReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 60
update-comment: true
title: Test Coverage
pass-emoji: ':green_circle:'
fail-emoji: ':red_circle:'