-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (33 loc) · 922 Bytes
/
build.yml
File metadata and controls
39 lines (33 loc) · 922 Bytes
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
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Least-privilege GITHUB_TOKEN: the build only needs to read the repo.
# Artifact upload uses the run's own storage and needs no repo write scope.
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17', '21' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build and test
run: mvn -B verify -P coverage-check
- name: Upload JaCoCo reports
if: always() && matrix.java == '21'
uses: actions/upload-artifact@v4
with:
name: jacoco-reports
path: '**/target/site/jacoco/'
if-no-files-found: ignore