We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ffa04 commit 244b636Copy full SHA for 244b636
.github/workflows/workspace.yml
@@ -19,6 +19,10 @@ jobs:
19
- uses: actions/checkout@v3
20
- uses: dtolnay/rust-toolchain@master
21
with:
22
+ # We need Nightly for -Zbuild-std.
23
+ # Fixed Nigthly version is used to prevent
24
+ # CI failures which are not relevant to PR changes
25
+ # on introduction of new Clippy lints.
26
toolchain: nightly-2024-06-11
27
components: clippy,rust-src
28
- name: std feature
@@ -79,7 +83,10 @@ jobs:
79
83
runs-on: ubuntu-latest
80
84
steps:
81
85
82
- - uses: dtolnay/rust-toolchain@nightly # Needed for doc_auto_cfg
86
+ - uses: dtolnay/rust-toolchain@master
87
+ with:
88
+ # We need Nightly for doc_auto_cfg
89
+ toolchain: nightly-2024-06-11
90
- uses: Swatinem/rust-cache@v2
91
- name: Generate Docs
92
env:
0 commit comments