Skip to content

chore(deps): bump serde_json from 1.0.134 to 1.0.138 #568

chore(deps): bump serde_json from 1.0.134 to 1.0.138

chore(deps): bump serde_json from 1.0.134 to 1.0.138 #568

Workflow file for this run

---
name: CI
on:
workflow_dispatch:
push:
jobs:
lint:
name: Lint the code.
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Check code format
run: cargo fmt --check
- name: Lint the code
run: cargo clippy --all-targets --all-features
test:
name: Unit test the code.
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Run unit tests
run: cargo test