app-json-settings 2.2.0

Tiny typed JSON settings persistence for Rust applications.
Documentation
name: CI

on:
  push:
  pull_request:

jobs:
  test:
    name: Rust checks
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@stable
      - name: Check formatting
        run: cargo fmt --check
      - name: Clippy
        run: cargo clippy --all-targets -- -D warnings
      - name: Test default features
        run: cargo test
      - name: Test no default features
        run: cargo test --no-default-features
      - name: Check RFC integrity
        run: scripts/check-rfcs.sh

  windows-uwp-feature-check:
    name: Windows UWP feature check
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@stable
      - name: Check optional UWP feature compiles
        run: cargo check --features uwp