From d587cb82610b90e24bfe44416402f4e3811c7854 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 12:25:34 +0100 Subject: [PATCH] chore(deps): bump codecov/codecov-action from 3 to 4 (#152) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * wip --------- Signed-off-by: dependabot[bot] Co-authored-by: Manuel Holtgrewe Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/rust.yml | 2 +- codecov.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 codecov.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6bf988e..16f84c2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -121,7 +121,7 @@ jobs: if: ${{ matrix.label == 'full' }} - name: Codecov submission of fast test results - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: verbose: true fail_ci_if_error: true diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 0000000..e1dbc71 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,27 @@ +# For more configuration details: +# https://docs.codecov.io/docs/codecov-yaml + +# Check if this file is valid by running in bash: +# curl -X POST --data-binary @.codecov.yml https://codecov.io/validate + +# Coverage configuration +# ---------------------- +coverage: + status: + patch: false + + range: 70..90 # First number represents red, and second represents green + # (default is 70..100) + round: down # up, down, or nearest + precision: 2 # Number of decimal places, between 0 and 5 + +# Ignoring Paths +# -------------- +# which folders/files to ignore + +# Pull request comments: +# ---------------------- +# Diff is the Coverage Diff of the pull request. +# Files are the files impacted by the pull request +comment: + layout: diff, files # accepted in any order: reach, diff, flags, and/or files