Skip to content

41 add client parameter to requests #52

41 add client parameter to requests

41 add client parameter to requests #52

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
name: Java CI with Maven, Run Tests, Coverage Report and Badge
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java Development Kits
uses: actions/setup-java@v3
with:
java-version: 17
distribution: microsoft
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Generate JavaCodeCoverage badge
id: jacoco
uses: cicirello/jacoco-badge-generator@v2
with:
badges-directory: .github/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@v3
with:
name: jacoco-report
path: target/site/jacoco/
- name: Commit and push the coverage badges and summary file
if: ${{ github.event_name != 'pull_request' }}
run: |
cd .github/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' }}
# run: |
# REPORT=$(<.github/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}"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}