-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (38 loc) · 1.31 KB
/
develop-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: develop-ci
on:
pull_request:
branches:
- 'develop'
permissions: write-all
jobs:
setting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Set up properties
run: |
cd src/main
mkdir resources
cd resources
touch application.properties
echo "${{ secrets.APPLICATION }}" > application.properties
cat application.properties
shell: bash
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew clean jacocoTestReport
- name: Add coverage to PR
id: jacoco
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/build/jacoco/index.xml
token: ${{ secrets.GITHUB_TOKEN }}
title: "테스트 커버리지 측정"
min-coverage-overall: 40
min-coverage-changed-files: 40