-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (49 loc) · 1.62 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: build
on: [push]
jobs:
build_job: # job name
runs-on: ubuntu-22.04
steps:
- name: Use JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Standard Checkout
uses: actions/[email protected]
- name: Build with Maven
run: mvn -B verify
- name: Upload JaCoCo coverage report
uses: actions/[email protected]
with:
name: jacoco-report
path: microf-custom/target/site/jacoco-aggregate/
generate_badges:
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop'
needs: build_job
steps:
- name: Get JaCoCo coverage report
uses: actions/[email protected]
with:
name: jacoco-report
path: microf-custom/target/site/jacoco-aggregate/
- name: Generate JaCoCo Badge
uses: cicirello/[email protected]
with:
jacoco-csv-file: microf-custom/target/site/jacoco-aggregate/jacoco.csv
generate-branches-badge: true
- name: Log coverage percentage
run: |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}"
echo "branch coverage = ${{ steps.jacoco.outputs.branches }}"
- name: Shallow Checkout
uses: actions/[email protected]
with:
fetch-depth: 1
- name: Commit and push the badge (if it changed)
uses: EndBug/[email protected]
with:
default_author: github_actions
message: 'Autogenerated JaCoCo coverage badge'
add: '*.svg'