Skip to content

chore(kelly): enforce always-valid current_kelly_fraction (#12) #50

chore(kelly): enforce always-valid current_kelly_fraction (#12)

chore(kelly): enforce always-valid current_kelly_fraction (#12) #50

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
- run: cargo fmt --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo build --all-features
- run: cargo test --all-features