We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666e616 commit 31cdd2aCopy full SHA for 31cdd2a
.github/actions/clippy-annotation-reporter/action.yml
@@ -35,6 +35,17 @@ runs:
35
run: |
36
cd ${{ github.action_path }}
37
cargo build --release
38
+ - name: Debug step
39
+ shell: bash
40
+ run: |
41
+ FILE_PATH="data-pipeline/src/trace_exporter.mod.rs"
42
+
43
+ echo "Direct branch comparison for $FILE_PATH:"
44
+ echo "==== BASE BRANCH ===="
45
+ git show "origin/main:$FILE_PATH" | grep -c "#\[allow(clippy::unwrap_used"
46
47
+ echo "==== HEAD BRANCH ===="
48
+ git show "HEAD:$FILE_PATH" | grep -c "#\[allow(clippy::unwrap_used"
49
50
- name: Run annotation reporter
51
shell: bash
0 commit comments