[AJA 166] Add: CD flows, Dockerfile, Entities #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |
min-coverage-overall: 0 | |
min-coverage-changed-files: 0 | |
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 |