Skip to content

Update Rust crate serde to v1.0.217 #2227

Update Rust crate serde to v1.0.217

Update Rust crate serde to v1.0.217 #2227

Workflow file for this run

name: Lint
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
pull_request:
branches:
- main
permissions:
contents: read
jobs:
super-linter:
name: Super Linter
uses: harryzcy/github-actions/.github/workflows/linter.yml@main
rust-clippy:
name: Rust Clippy
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
toolchain:
- stable
- nightly
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Rust
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Install Clippy
run: rustup component add clippy
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
env:
CARGO_INCREMENTAL: "0"
rust-machete:
name: Rust Machete
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Machete
uses: bnjbvr/cargo-machete@5eaad10acf89fb0c6a31d9b197a2d48ba762d28e # v0.7.0
spelling:
name: Spelling
uses: harryzcy/github-actions/.github/workflows/spelling.yml@main