quant-mathema 0.0.1

Library of functions and primitives for quantative finance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: pre-commit
on:
  pull_request:
  push:
    branches: [master]

jobs:
  pre-commit:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-python@v3
    - name: Run tests
      run: |
        cargo test
    - uses: pre-commit/action@v3.0.1