chore(deps): bump serde from 1.0.204 to 1.0.209 #299
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: Clippy Lint and Check | |
on: [pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
name: Install Rust Toolchain | |
with: | |
toolchain: nightly | |
components: clippy | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
name: Add caching | |
- uses: actions-rs/clippy-check@v1 | |
name: Lint and Check codebase with Clippy | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --verbose |