Skip to content

Bump serde_json from 1.0.128 to 1.0.132 #17

Bump serde_json from 1.0.128 to 1.0.132

Bump serde_json from 1.0.128 to 1.0.132 #17

Workflow file for this run

name: CI
on:
push:
pull_request:
merge_group:
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --locked -- -D warnings
fmt:
name: Format check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt -- --check
test:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: dtolnay/rust-toolchain@stable
- name: Build shim
run: cargo build --locked