Skip to content

Commit

Permalink
🔧 add ci script and actions bot make coverage comment on pr
Browse files Browse the repository at this point in the history
  • Loading branch information
geoje committed Jul 23, 2024
1 parent f112cf0 commit 3bec9de
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/be-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit 3bec9de

Please sign in to comment.