Fix wrong usage of Copy
in Clone
when bounds are present
#397
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: [push, pull_request] | |
jobs: | |
clippy-rustdoc: | |
name: Clippy + Rustdoc | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- channel: stable | |
features: "" | |
- channel: stable | |
features: --features safe | |
- channel: nightly | |
features: --features nightly | |
- channel: stable | |
features: --features zeroize | |
- channel: stable | |
features: --features zeroize-on-drop | |
- channel: nightly | |
features: --features safe,nightly | |
- channel: stable | |
features: --features safe,zeroize | |
- channel: stable | |
features: --features safe,zeroize-on-drop | |
- channel: nightly | |
features: --features nightly,zeroize | |
- channel: nightly | |
features: --features nightly,zeroize-on-drop | |
- channel: nightly | |
features: --all-features | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update Rust | |
run: | | |
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade | |
rustup default ${{ matrix.channel }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Clippy | |
run: | |
cargo clippy --all-targets --workspace ${{ matrix.features }} -- -D warnings | |
- name: Run Rustdoc | |
env: | |
RUSTDOCFLAGS: -D warnings | |
run: | |
cargo doc --no-deps --document-private-items --workspace ${{ matrix.features }} |