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
# note: this is just temporary to check if we caught all the clippy warnings
62
+
# I plan to move out of dep_rust in this PR with a follow-up commit.
63
+
- name: clippy exhaustive check
64
+
if: ${{ (runner.os == 'Linux' )}}
65
+
run: |
66
+
sudo apt-get install -y jq || true
67
+
sudo dnf install -y jq || true
68
+
just clippy-exhaustive ${{ matrix.config }}
69
+
34
70
build:
35
71
if: ${{ inputs.docs_only == 'false' }}
36
72
timeout-minutes: 60
@@ -64,21 +100,6 @@ jobs:
64
100
- name: fmt
65
101
run: just fmt-check
66
102
67
-
- name: clippy
68
-
if: ${{ (runner.os == 'Windows' )}}
69
-
run: |
70
-
just clippy ${{ matrix.config }}
71
-
just clippy-guests ${{ matrix.config }}
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
-
sudo apt-get install -y jq || true
79
-
sudo dnf install -y jq || true
80
-
just clippy-exhaustive ${{ matrix.config }}
81
-
82
103
# 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