Skip to content

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

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

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

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2016-2025 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: codecov
'on':
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: codecov-${{ github.ref }}
cancel-in-progress: true
jobs:
codecov:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: zauguin/install-texlive@v4.0.0
with:
packages: scheme-basic geometry xcolor naive-ebnf microtype etoolbox
texlive_version: 2025
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 20
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- run: mvn install -Pjacoco,skipITs
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: true
if: github.ref == 'refs/heads/master'