Skip to content

Implemented #12 Added opentelemetry instrumentation for for exporting… #15

Implemented #12 Added opentelemetry instrumentation for for exporting…

Implemented #12 Added opentelemetry instrumentation for for exporting… #15

Workflow file for this run

name: Measure coverage
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Run Coverage
run: |
chmod +x gradlew
./gradlew test
- name: Add coverage to PR
id: jacoco
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/build/reports/jacoco.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 60