Skip to content

Refactor binomial tree model to use enum for price initialization #14

Refactor binomial tree model to use enum for price initialization

Refactor binomial tree model to use enum for price initialization #14

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