-
Notifications
You must be signed in to change notification settings - Fork 30
53 lines (48 loc) · 1.38 KB
/
verify_build.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
name: Assert package builds, tests run and javadoc builds
on:
workflow_dispatch:
push:
branches: # Only run for changes in master branch and any releases branch
- master
- 'releases/**'
pull_request:
branches:
- master
jobs:
test_javadoc:
name: Assert tests and javadoc with java 11
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Generate javadoc
run: mvn javadoc:javadoc
- name: Run tests
run: mvn -B test --file pom.xml -ntp
- name: Create coverage report from jacoco execution data
run: mvn -B jacoco:report -ntp
- name: Upload jacoco coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
file: jacoco.xml
name: codecov
token: ${{ secrets.CODECOV_TOKEN }}
test_java_8:
name: Assert tests and javadoc with java 8
runs-on: ubuntu-latest
needs: test_javadoc
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- name: Run tests
run: mvn -B test --file pomJava8.xml -ntp