Skip to content

reuse

reuse #263

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2013-2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: codecov
'on':
push:
branches:
- master
jobs:
codecov:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-
- run: mvn install -Pjacoco
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}