Skip to content

build(deps): bump serde from 1.0.204 to 1.0.213 #511

build(deps): bump serde from 1.0.204 to 1.0.213

build(deps): bump serde from 1.0.204 to 1.0.213 #511

name: "Quality: Clippy"
on:
push:
branches:
- "mistress"
paths:
- "**.rs"
- "Cargo.toml"
pull_request:
branches:
- "mistress"
paths:
- "**.rs"
- "Cargo.toml"
jobs:
quality-clippy:
strategy:
matrix:
version: ["stable", "1.74"]
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v2"
- name: "Install latest stable Rust"
uses: "actions-rs/toolchain@v1"
with:
toolchain: "${{ matrix.version }}"
override: true
components: "clippy"
- name: "Install musl-tools"
run: "sudo apt-get update && sudo apt-get install -y musl-tools comerr-dev wget"
- uses: "Swatinem/rust-cache@v2"
with:
key: "clippy"
- name: "Run clippy"
run: "cargo clippy --all-targets --all-features -- -D warnings"