Skip to content

[KAN-8] global exception 처리 작업 #6

[KAN-8] global exception 처리 작업

[KAN-8] global exception 처리 작업 #6

Workflow file for this run

name: Test
on:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Grant Execute Permission For Gradlew
run: chmod +x gradlew
- name: Test With Gradle
run: ./gradlew test koverXmlReport
- name: Add coverage report to PR
id: kover
uses: mi-kas/kover-report@v1
with:
path: ${{ github.workspace }}/build/reports/kover/report.xml
token: ${{ secrets.GITHUB_TOKEN }}
title: Code Coverage
update-comment: true
min-coverage-overall: 10
min-coverage-changed-files: 10
coverage-counter-type: LINE