Skip to content

Migrate to mdbook 0.5 #1025

Migrate to mdbook 0.5

Migrate to mdbook 0.5 #1025

Workflow file for this run

name: Beta lints
# These lints are only informative, so we only run them directly on branches
# and not trial-merges of PRs, to reduce noise.
on: push
jobs:
clippy-beta:
name: Clippy (beta)
timeout-minutes: 30
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- id: prepare
uses: ./.github/actions/prepare
with:
nightly-features: true
- uses: dtolnay/rust-toolchain@beta
id: toolchain
- run: rustup override set "${TOOLCHAIN}"
shell: sh
env:
TOOLCHAIN: ${{steps.toolchain.outputs.name}}
- name: Run Clippy (beta)
uses: actions-rs/clippy-check@v1
continue-on-error: true
with:
name: Clippy (beta)
token: ${{ secrets.GITHUB_TOKEN }}
args: >
${{ steps.prepare.outputs.feature-flags }}
--all-targets
-- -W clippy::all