Skip to content

test release

test release #8

Workflow file for this run

name: Measure coverage
on:
push:
branches:
- feat/CS-36689-compare-merge-branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run Coverage
run: |
mvn test
- name: Add coverage to PR
id: jacoco
uses: madrapps/jacoco-report@v1.3
with:
paths: ${{ github.workspace }}/target/site/jacoco/index.html
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 60
- name: Build with Maven
run: mvn -B package -Pcoverage