Skip to content

Commit 3bebee7

Browse files
committedJun 16, 2022
Auto merge of #98173 - flip1995:clippyup, r=Manishearth
Update Clippy r? `@Manishearth`
2 parents 6ec3993 + 37cdd7e commit 3bebee7

File tree

200 files changed

+4142
-1913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+4142
-1913
lines changed
 

‎Cargo.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,7 @@ name = "clippy_lints"
698698
version = "0.1.63"
699699
dependencies = [
700700
"cargo_metadata",
701+
"clippy_dev",
701702
"clippy_utils",
702703
"if_chain",
703704
"itertools",
@@ -708,6 +709,7 @@ dependencies = [
708709
"semver",
709710
"serde",
710711
"serde_json",
712+
"tempfile",
711713
"toml",
712714
"unicode-normalization",
713715
"unicode-script",

‎src/tools/clippy/.github/workflows/clippy_bors.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,25 @@ jobs:
143143
env:
144144
OS: ${{ runner.os }}
145145

146+
metadata_collection:
147+
needs: base
148+
runs-on: ubuntu-latest
149+
150+
steps:
151+
# Setup
152+
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
153+
with:
154+
github_token: "${{ secrets.github_token }}"
155+
156+
- name: Checkout
157+
uses: actions/checkout@v3.0.2
158+
159+
- name: Install toolchain
160+
run: rustup show active-toolchain
161+
162+
- name: Test metadata collection
163+
run: cargo collect-metadata
164+
146165
integration_build:
147166
needs: changelog
148167
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)
Please sign in to comment.