featrs 0.2.0

Feature engineering library for Rust, inspired by scikit-learn
Documentation
name: CI

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
        toolchain: [stable]
    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          toolchain: ${{ matrix.toolchain }}
          components: clippy, rustfmt

      - name: Build
        run: cargo build --all-features

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

      - name: Format
        run: cargo fmt --check

      - name: Test
        run: cargo test --all-features