Skip to content

Bump serde_json from 1.0.128 to 1.0.129 #1448

Bump serde_json from 1.0.128 to 1.0.129

Bump serde_json from 1.0.128 to 1.0.129 #1448

Workflow file for this run

name: lint
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: linting
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings