feat!: migration from portlet to servlet #75
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
# For more information see: https://docs.github.com/en/actions/ | |
name: Project CI | |
on: | |
push: | |
branches: ['main'] | |
paths: ['**.java', '.github/workflows/**', 'pom.xml'] | |
pull_request: | |
branches: ['main'] | |
workflow_dispatch: | |
jobs: | |
license-and-header: | |
runs-on: ubuntu-latest | |
env: | |
JAVA_VERSION: '11' | |
name: Check license headers and notice | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{ env.JAVA_VERSION }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
distribution: 'temurin' | |
cache: maven | |
- name: Check license hearders | |
run: ./mvnw license:check | |
- name: Check NOTICE | |
run: ./mvnw notice:check | |
backend: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['11', '17'] | |
env: | |
JACOCO_JAVA: '11' | |
name: Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout badges branch to a badges directory nested inside first checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: badges | |
path: badges | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: maven | |
- name: Build backend | |
run: ./mvnw -B package -Pprod -Dmaven.test.skip=true -Darguments="-DskipTests" | |
- name: Tests backend | |
run: ./mvnw test -Ptest | |
- name: Generate JaCoCo badge | |
id: jacoco | |
uses: cicirello/jacoco-badge-generator@v2 | |
with: | |
badges-directory: badges | |
generate-branches-badge: true | |
generate-summary: true | |
- name: Log coverage percentages to workflow output | |
run: | | |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}" | |
echo "branches = ${{ steps.jacoco.outputs.branches }}" | |
- name: Upload JaCoCo coverage report as a workflow artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jacoco-report-java-${{ matrix.java }} | |
path: target/site/jacoco/ | |
- name: Commit and push the coverage badges and summary file | |
if: ${{ github.event_name != 'pull_request' && matrix.java == env.JACOCO_JAVA }} | |
run: | | |
cd badges | |
if [[ `git status --porcelain *.svg *.json` ]]; then | |
git config --global user.name 'github-actions' | |
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
git add *.svg *.json | |
git commit -m "Autogenerated JaCoCo coverage badges" *.svg *.json | |
git push | |
fi | |
- name: Comment on PR with coverage percentages | |
if: ${{ github.event_name == 'pull_request' && matrix.java == env.JACOCO_JAVA }} | |
run: | | |
REPORT=$(<badges/coverage-summary.json) | |
COVERAGE=$(jq -r '.coverage' <<< "$REPORT")% | |
BRANCHES=$(jq -r '.branches' <<< "$REPORT")% | |
NEWLINE=$'\n' | |
BODY="## JaCoCo Test Coverage Summary Statistics${NEWLINE}* __Coverage:__ ${COVERAGE}${NEWLINE}* __Branches:__ ${BRANCHES}" | |
gh pr comment ${{github.event.pull_request.number}} -b "${BODY}" | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |