Skip to content

bashate

bashate #189

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2012-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@v1
with:
java-version: 17
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: mvn install -Pjacoco -Dinvoker.skip
- uses: codecov/codecov-action@v5
with:
files: ./s3auth-hosts/target/site/jacoco/jacoco.xml,./s3auth-rest/target/site/jacoco/jacoco.xml,./s3auth-relay/target/site/jacoco/jacoco.xml
fail_ci_if_error: true