Skip to content

ASAP-183 fix: 스페이스 제거할 때, 스페이스 순서 재 조정하는 로직 추가 #63

ASAP-183 fix: 스페이스 제거할 때, 스페이스 순서 재 조정하는 로직 추가

ASAP-183 fix: 스페이스 제거할 때, 스페이스 순서 재 조정하는 로직 추가 #63

Workflow file for this run

name: Code Analyze
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
- name: Gradle Caching
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: Grant Execute Permission For Gradlew
run: chmod +x gradlew
- name: Analyze With Gradle
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
./gradlew clean test testCodeCoverageReport sonar
- name: Reporting Code Coverage
id: jacoco
uses: madrapps/[email protected]
with:
paths: |
${{github.workspace}}/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 40
title: Code Coverage Report
update-comment: true