numaxiom 0.0.2

Lightweight numeric marker traits for ranges/signs plus constants and ops; std by default, no_std optional.
Documentation
name: CI

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

jobs:
  msrv:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Set up Rust (MSRV)
        uses: dtolnay/rust-toolchain@1.56.1

      - uses: Swatinem/rust-cache@v2

      - name: Build (MSRV, default features)
        run: cargo build --all-targets

      - name: Test (MSRV, default features)
        run: cargo test --all-targets

      - name: Build (MSRV, no default features)
        run: cargo build --all-targets --no-default-features

      - name: Test (MSRV, no default features)
        run: cargo test --all-targets --no-default-features

  stable:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Set up Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy, rustfmt

      - uses: Swatinem/rust-cache@v2

      - name: Format
        run: cargo fmt --all -- --check

      - name: Clippy
        run: cargo clippy --all-targets -- -D warnings

      - name: Test (default features)
        run: cargo test --all-targets

      - name: Test (no default features)
        run: cargo test --all-targets --no-default-features

      - name: Test (no default features + libm)
        run: cargo test --all-targets --no-default-features --features libm