Skip to content

add binomial tree models docs && add unit test #9

add binomial tree models docs && add unit test

add binomial tree models docs && add unit test #9

Workflow file for this run

name: Rust
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check
run: cargo check --workspace --verbose
- name: Run tests
run: cargo test --workspace --verbose