-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (44 loc) · 1.25 KB
/
be-ci.yaml
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
49
50
51
name: Backend CI
on:
pull_request:
branches:
- be/dev
jobs:
test:
runs-on: ubuntu-latest
environment: test
permissions:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Cache Gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Generate test report
working-directory: ./backend
env:
JASYPT_PASSWORD: ${{ secrets.JASYPT_PASSWORD }}
run: |
chmod +x ./gradlew
./gradlew jacocoTestReport
- name: Add comment to PR with test coverage
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/**/build/reports/jacoco/test/jacocoTestReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 0
min-coverage-changed-files: 0
update-comment: true