json-serde 0.0.1-alpha.1

Serde helpers for JSON-specific serialization semantics
Documentation
#
# Configuration for GitHub-based CI
#
name: Build

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  check-style:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Report cargo version
      run: cargo --version
    - name: Report rustfmt version
      run: cargo fmt -- --version
    - name: Check style
      run: cargo fmt -- --check

  build-and-test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ ubuntu-latest, windows-latest, macos-latest ]
    steps:
    - uses: actions/checkout@v4
    - name: Build
      run: cargo build --locked --tests --verbose
    - name: Run tests (no features)
      run: cargo test --locked --verbose
    - name: Run tests (schemars 0.8)
      run: cargo test --locked --features schemars08 --verbose
    - name: Run tests (schemars 1.x)
      run: cargo test --locked --features schemars1 --verbose
    - name: Run tests (all features)
      run: cargo test --locked --all-features --verbose