sigmut 0.0.2

a state management framework designed to be used as a foundation for UI frameworks.
Documentation
name: CI

on:
  push:
  pull_request:
  schedule: [cron: "20 10 * * *"]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - run: rustup update stable
      - run: cargo --version
      - name: Build
        run: cargo build --verbose
      - name: Build tests
        run: cargo test --verbose --no-run
      - name: Run tests
        run: cargo test --verbose
        # - name: Run compile fail tests
        # run: cargo test --test compile_fail --verbose -- --ignored
      - name: Clippy
        run: cargo clippy --all-features --tests --lib -- -W clippy::all
        env:
          RUSTFLAGS: -D warnings
      - run: rustup toolchain install nightly --allow-downgrade --profile minimal
      - run: rustup component add --toolchain nightly miri
      - name: Run miri tests
        run: cargo +nightly miri test -- -Z unstable-options --exclude-should-panic
      - name: Set minimal versions
        run: cargo +nightly update -Z direct-minimal-versions
      - name: Build tests (minimal versions)
        run: cargo test --verbose --no-run
      - name: Run tests (minimal versions)
        run: cargo test --verbose