File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 16
16
CARGO_TERM_COLOR : always
17
17
# renovate: datasource=crate depName=cargo-deny versioning=semver
18
18
CARGO_DENY_VERSION : 0.16.4
19
+ # renovate: datasource=crate depName=cargo-machete versioning=semver
20
+ CARGO_MACHETE_VERSION : 0.7.0
19
21
# renovate: datasource=crate depName=grcov versioning=semver
20
22
GRCOV_VERSION : 0.8.20
21
23
# renovate: datasource=npm depName=pnpm
@@ -111,9 +113,19 @@ jobs:
111
113
- run : cargo clippy --all-targets --all-features --workspace
112
114
- run : cargo doc --no-deps --document-private-items
113
115
116
+ # to make https://github.com/rust-lang/team/blob/651fb3f9c64c934c9073472765d745a606dd9daf/repos/rust-lang/crates.io.toml#L17 happy until we migrated it…
114
117
backend-cargo-deny :
115
118
name : Backend / cargo-deny
116
119
runs-on : ubuntu-24.04
120
+ if : false
121
+ steps :
122
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
123
+ with :
124
+ persist-credentials : false
125
+
126
+ backend-deps :
127
+ name : Backend / dependencies
128
+ runs-on : ubuntu-24.04
117
129
needs : changed-files
118
130
if : github.event_name != 'pull_request' || needs.changed-files.outputs.rust-lockfile == 'true'
119
131
@@ -127,6 +139,9 @@ jobs:
127
139
- run : cargo install cargo-deny --vers ${CARGO_DENY_VERSION}
128
140
- run : cargo deny check
129
141
142
+ - run : cargo install cargo-machete --vers ${CARGO_MACHETE_VERSION}
143
+ - run : cargo machete
144
+
130
145
backend-test :
131
146
name : Backend / Test
132
147
runs-on : ubuntu-24.04
You can’t perform that action at this time.
0 commit comments