Skip to content

Commit

Permalink
Use fixed Nitghtly version for rustdocs and add CI config comments
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jun 14, 2024
1 parent 77ffa04 commit 244b636
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
# We need Nightly for -Zbuild-std.
# Fixed Nigthly version is used to prevent
# CI failures which are not relevant to PR changes
# on introduction of new Clippy lints.
toolchain: nightly-2024-06-11
components: clippy,rust-src
- name: std feature
Expand Down Expand Up @@ -79,7 +83,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly # Needed for doc_auto_cfg
- uses: dtolnay/rust-toolchain@master
with:
# We need Nightly for doc_auto_cfg
toolchain: nightly-2024-06-11
- uses: Swatinem/rust-cache@v2
- name: Generate Docs
env:
Expand Down

0 comments on commit 244b636

Please sign in to comment.