added units and runtime exception #839
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |