Skip to content

chore(deps): bump serde from 1.0.204 to 1.0.210 #116

chore(deps): bump serde from 1.0.204 to 1.0.210

chore(deps): bump serde from 1.0.204 to 1.0.210 #116

Workflow file for this run

name: Code Lint
on: [push]
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Cargo format
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --all-targets