Skip to content

[AJA 166] Add: CD flows, Dockerfile, Entities #3

[AJA 166] Add: CD flows, Dockerfile, Entities

[AJA 166] Add: CD flows, Dockerfile, Entities #3

name: check convention, test w/ jacoco
on:
pull_request:
branches:
- main
env:
GRADLE_VERSION: 8.3
JAVA_VERSION: '17'
JAVA_DISTRIBUTION: 'temurin'
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRIBUTION }}
- name: Setup Gradle w/ caching
uses: gradle/[email protected]
with:
gradle-version: ${{ env.GRADLE_VERSION }}
cache-read-only: true # will be update
- name: Check Code Convention
run: gradle check
- name: Check Tests w/ Test Coverage
run: gradle testWithCoverage
- name: Add Coverage on Pull Request
id: jacoco
uses: madrapps/jacoco-report@v1
with:
title: Test Coverage Report
paths: ${{ github.workspace }}/build/reports/jacoco/test/jacocoTestReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
build:
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRIBUTION }}
- name: Clean Build w/o TEST, CHECK
uses: gradle/[email protected]
with:
arguments: clean build -x test -x check