Skip to content

BUG: Double detection not honoring threshold (Issue #81) + fix other … #54

BUG: Double detection not honoring threshold (Issue #81) + fix other …

BUG: Double detection not honoring threshold (Issue #81) + fix other … #54

Workflow file for this run

name: Coverage
on:
push:
branches: [ main ]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 17
- name: Install dependencies, run tests, and collect coverage
run: gradle build jacocoTestReport
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}