Skip to content

feat: Make serde serialization and deserialization optional via serde feature #7

feat: Make serde serialization and deserialization optional via serde feature

feat: Make serde serialization and deserialization optional via serde feature #7

Workflow file for this run

name: Sanity Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test