-
Notifications
You must be signed in to change notification settings - Fork 52
52 lines (39 loc) · 1.36 KB
/
build-master.yaml
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
name: Build and Test (Merge to Master)
on:
push:
branches: [master]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Maven Package
run: mvn clean install -Dmaven.test.skip=true
test-coverage:
needs: build
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v1
with:
java-version: 11
- run: ./environment/build.sh && mvn clean && sudo mvn -B verify -P coverage --no-transfer-progress
- name: jacoco-badge-generator
uses: cicirello/[email protected]
with:
generate-coverage-badge: true
- name: Log coverage percentage
run: |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}"
echo "branch coverage = ${{ steps.jacoco.outputs.branches }}"
- name: Commit the badge (if it changed)
uses: stefanzweifel/git-auto-commit-action@v5 # Commit all changed files back to the repository