Skip to content

chore(deps): update crate-ci/typos action to v1.36.3 #534

chore(deps): update crate-ci/typos action to v1.36.3

chore(deps): update crate-ci/typos action to v1.36.3 #534

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: codecov
'on':
push:
branches:
- master
paths-ignore: [ 'README.md' ]
concurrency:
group: codecov-${{ github.ref }}
cancel-in-progress: true
jobs:
codecov:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 21
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: mvn clean install -Pjacoco -Dinvoker.skip --errors --batch-mode '-Dgroups=!deep'
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: true