-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1.04 KB
/
codecoverage.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: Code Coverage
on:
push:
branches: [ '*' ]
pull_request:
branches:
- 'main'
permissions:
contents: read
jobs:
code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# JDK 17 설정
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'oracle'
# Gradle 설정
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/dev' }}
# gradlew 파일 권한 지정
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: test
run: ./gradlew test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
if: always()
env:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./build/reports/jacoco/test/jacocoTestReport.xml
fail_ci_if_error: true
continue-on-error: true