chore(deps): Bump rui314/setup-mold from 6bebc01caac32fb5251ee64f60cea0322d0e6574 to 8de9eea54963d01c1a6c200606257d65bd53bea1 #778
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" | |
permissions: {} | |
on: | |
pull_request: | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
cargo-fmt: | |
name: "cargo fmt" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: toolchain | |
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a # doesn't have usual versioned releases/tags | |
with: | |
toolchain: stable | |
components: rustfmt # minimal profile does not include it | |
- run: cargo +${{ steps.toolchain.outputs.name }} fmt --all --check | |
cargo-clippy: | |
name: "cargo clippy" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: toolchain | |
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a # doesn't have usual versioned releases/tags | |
with: | |
toolchain: stable | |
components: clippy # minimal profile does not include it | |
- run: cargo +${{ steps.toolchain.outputs.name }} clippy --all-targets --all-features | |
cargo-rustdoc-clippy: | |
name: "cargo rustdoc-clippy" | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: toolchain | |
uses: dtolnay/rust-toolchain@d8352f6b1d2e870bc5716e7a6d9b65c4cc244a1a # doesn't have usual versioned releases/tags | |
with: | |
toolchain: nightly | |
components: clippy # minimal profile does not include it | |
# dependency of cargo-rustdoc-clippy | |
- run: | | |
sudo apt-get update | |
sudo apt-get install zsh | |
# https://github.com/rust-lang/rust/issues/56232#issuecomment-1248359946 | |
- run: | | |
curl --output ~/.cargo/bin/cargo-rustdoc-clippy https://raw.githubusercontent.com/Nemo157/dotfiles/e6daf083068ff17d14b19dc2569ae62ea86bf23c/bin/cargo-rustdoc-clippy | |
chmod +x ~/.cargo/bin/cargo-rustdoc-clippy | |
- run: cargo +${{ steps.toolchain.outputs.name }} rustdoc-clippy --all-features |