You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/dep_rust.yml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -65,10 +65,18 @@ jobs:
65
65
run: just fmt-check
66
66
67
67
- name: clippy
68
+
if: ${{ (runner.os == 'Windows' )}}
68
69
run: |
69
70
just clippy ${{ matrix.config }}
70
71
just clippy-guests ${{ matrix.config }}
71
72
73
+
# note: this is just temporary to check if we caught all the clippy warnings
74
+
# I plan to move out of dep_rust in this PR with a follow-up commit.
75
+
- name: clippy exhaustive check
76
+
if: ${{ (runner.os == 'Linux' )}}
77
+
run: |
78
+
just clippy-exhaustive ${{ matrix.config }}
79
+
72
80
# Does not check for updated Cargo.lock files for test rust guests as this causes an issue with this checkwhen deoendabot updates dependencies in common crates
0 commit comments