Skip to content

Bump serde_json from 1.0.118 to 1.0.119 #53

Bump serde_json from 1.0.118 to 1.0.119

Bump serde_json from 1.0.118 to 1.0.119 #53

Workflow file for this run

name: Cargo Check
on:
pull_request:
workflow_dispatch:
workflow_call:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- name: Cache Packages
uses: Swatinem/rust-cache@v2
- name: Install node deps
run: npm install
- name: Check web language formatting
run: npm run prettier-check
- name: Check Rust formatting
run: cargo fmt --check
- name: Check build
run: cargo clippy
- name: Run tests
run: cargo test