-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1.02 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
name: Backend CI
on:
pull_request:
branches:
- be/dev
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
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@v4
with:
java-version: 21
distribution: temurin
- 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