-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/acquisition/add-http-datasource
- Loading branch information
Showing
836 changed files
with
63,204 additions
and
35,380 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
#!/bin/bash | ||
|
||
# Run this from the repository root: | ||
# | ||
# .github/generate-codecov-yml.sh >> .github/codecov.yml | ||
|
||
cat <<EOT | ||
# we measure coverage but don't enforce it | ||
# https://docs.codecov.com/docs/codecov-yaml | ||
codecov: | ||
require_ci_to_pass: false | ||
coverage: | ||
status: | ||
patch: | ||
default: | ||
target: 0% | ||
project: | ||
default: | ||
target: 0% | ||
# if a directory is ignored, there is no way to un-ignore files like pkg/models/helpers.go | ||
# so we make a full list | ||
ignore: | ||
EOT | ||
|
||
find . -name "*.go" | while read -r file; do | ||
if head -n 1 "$file" | grep -q "Code generated by"; then | ||
echo " - \"$file\"" | ||
fi | ||
done |
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
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
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
Oops, something went wrong.