Skip to content

feat: Implement Chooser Option Pricing Model #691

feat: Implement Chooser Option Pricing Model

feat: Implement Chooser Option Pricing Model #691

Workflow file for this run

name: Format Check
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- 'release/**'
env:
CARGO_TERM_COLOR: always
jobs:
format_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Cache Rust dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Install make
run: sudo apt-get install make
- name: Format check
run: make fmt