Skip to content

Update junit-framework monorepo to v6 (major) #330

Update junit-framework monorepo to v6 (major)

Update junit-framework monorepo to v6 (major) #330

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2021-2025 Stepan Strunkov
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: Codecov
on: [push, pull_request]
jobs:
run:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
- run: |
gradle wrapper;
gradle build
gradle jacocoTestReport
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: build/reports/jacoco/report.xml
fail_ci_if_error: true