Skip to content

Bug error with flash calc #920

Bug error with flash calc

Bug error with flash calc #920

Workflow file for this run

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
tags: coverage
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