-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This is the configuration for codecov.yml -- remember to validate it. | ||
# | ||
# cat .github/codecov.yml | curl --data-binary @- https://codecov.io/validate | ||
|
||
codecov: | ||
notify: | ||
wait_for_ci: false | ||
require_ci_to_pass: false | ||
|
||
coverage: | ||
status: | ||
patch: | ||
default: | ||
target: 90% | ||
project: | ||
default: false | ||
exif_stripper: | ||
target: 90% | ||
paths: | ||
- "!tests/.*" | ||
tests: | ||
target: 100% | ||
paths: | ||
- "tests/.*" | ||
|
||
comment: | ||
layout: "reach, diff, files" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This workflow checks that the codecov.yml file is valid, if it is included in the PR. | ||
# | ||
# Author: Stefanie Molin | ||
|
||
name: Validate codecov config | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/codecov.yml' | ||
schedule: | ||
- cron: '21 21 21 * *' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# check that the codecov.yml configuration is valid | ||
codecov: | ||
runs-on: ubuntu-latest | ||
name: Validate codecov.yml | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Validate with codecov API | ||
run: | | ||
response=$(cat .github/codecov.yml | curl --data-binary @- https://codecov.io/validate) | ||
echo $response | ||
if [[ $response = Error* ]]; then | ||
exit 1 | ||
fi |