-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 changed file
with
99 additions
and
0 deletions.
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,99 @@ | ||
# This workflow should enforce monotonically increasing comment coverage | ||
|
||
on: [pull_request] | ||
|
||
name: Comment Coverage | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
check-lint-build-stable: | ||
name: Comment Coverage (stable) | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
steps: | ||
- name: Install latest stable toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
override: true | ||
target: x86_64-pc-windows-gnu | ||
|
||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
|
||
- name: Checkout PR branch | ||
uses: actions/checkout@v2 | ||
|
||
- name: Missing docs warnings (PR) | ||
id: missing_docs_warnings_pr | ||
run: | | ||
cargo -q clippy --message-format=short -- \ | ||
-Aclippy::all \ | ||
-Wclippy::missing_errors_doc \ | ||
-Wclippy::missing_panics_doc \ | ||
-Wclippy::missing_safety_doc \ | ||
-Wclippy::missing_docs_in_private_items \ | ||
-Wmissing_docs \ | ||
2>&1 \ | ||
| awk -F"[\` ]" \ | ||
'/warning: `.+?` \(lib\) generated [0-9]+ warning[s]?/ { print $3 ": " $7 }' \ | ||
| sort | ||
- name: Checkout target branch | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.base_ref }} | ||
|
||
- name: Missing docs warnings (Target) | ||
id: missing_docs_warnings_target | ||
run: | | ||
cargo -q clippy --message-format=short -- \ | ||
-Aclippy::all \ | ||
-Wclippy::missing_errors_doc \ | ||
-Wclippy::missing_panics_doc \ | ||
-Wclippy::missing_safety_doc \ | ||
-Wclippy::missing_docs_in_private_items \ | ||
-Wmissing_docs \ | ||
2>&1 \ | ||
| awk -F"[\` ]" \ | ||
'/warning: `.+?` \(lib\) generated [0-9]+ warning[s]?/ { print $3 ": " $7 }' \ | ||
| sort | ||
- name: Compare comment coverage | ||
run: | | ||
IFS=$'\n' read -rd '' -a missing_docs_warnings_pr_arr <<< "${{steps.missing_docs_warnings_pr.outcome}}" | ||
IFS=$'\n' read -rd '' -a missing_docs_warnings_target_arr <<< "${{steps.missing_docs_warnings_target.outcome}}" | ||
for pr_warnings_line in "${missing_docs_warnings_pr_arr[@]}" | ||
do | ||
# Extract the libname and number of warnings from the line | ||
IFS=': ' read -r libname nwarnings_pr <<< "$pr_warnings_line" | ||
# Look for the libname in the target warnings | ||
target_warning_line="" | ||
for target_warnings_line in "${missing_docs_warnings_target_arr[@]}" | ||
do | ||
if [[ $target_warnings_line == "$libname:"* ]]; then | ||
target_warning_line=$target_warnings_line | ||
break | ||
fi | ||
done | ||
if [ -z "$target_warning_line" ] | ||
then | ||
echo "New warnings found for \`${libname}\`" | ||
exit 1 | ||
fi | ||
# Find the number of warnings for the target branch | ||
IFS=': ' read -r _ nwarnings_target <<< "$target_warning_line" | ||
# Compare the values | ||
if [ "$nwarnings_target" -ge "$nwarnings_pr" ] | ||
then | ||
echo "Too many warnings for \`${libname}\` (${nwarnings_pr}): must be less than $nwarnings_target" | ||
exit 1 | ||
fi | ||
done |