Skip to content

Bump serde_json from 1.0.137 to 1.0.138 (#30) #14

Bump serde_json from 1.0.137 to 1.0.138 (#30)

Bump serde_json from 1.0.137 to 1.0.138 (#30) #14

Workflow file for this run

name: Rust Lint
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Check rustfmt
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings