Skip to content

build(deps): bump serde_json from 1.0.118 to 1.0.122 #222

build(deps): bump serde_json from 1.0.118 to 1.0.122

build(deps): bump serde_json from 1.0.118 to 1.0.122 #222

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
name: Rust checks
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@stable
- uses: davidB/rust-cargo-make@v1
- uses: actions/checkout@v4
- name: Run format
run: cargo make format
- name: Run check
run: cargo make check
- name: Run clippy
run: cargo make clippy
- name: Run test
run: cargo make test