feat: add examples for async API parameter optimization and ML hyperparameter tuning

This commit is contained in:
Manuel Raimann
2026-01-31 11:56:50 +01:00
parent b9a90ebec3
commit af8a9f7638
4 changed files with 612 additions and 1 deletions
+16
View File
@@ -61,6 +61,21 @@ jobs:
cargo test --verbose --features "${{ matrix.features }}"
fi
examples:
name: Examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust
run: |
rustup override set stable
rustup update stable
- uses: Swatinem/rust-cache@v2
- name: Run sync example (ml_hyperparameter_tuning)
run: cargo run --example ml_hyperparameter_tuning
- name: Run async example (async_api_optimization)
run: cargo run --example async_api_optimization --features async
docs:
name: Docs
runs-on: ubuntu-latest
@@ -243,6 +258,7 @@ jobs:
- fmt
- clippy
- test
- examples
- docs
- feature-check
- coverage