Skip to content

Update black_scholes.py #12

Update black_scholes.py

Update black_scholes.py #12

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip # doesn't work with pyproject.toml?
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[test]'
- name: Test with unittest
run: |
python tests/test_runner.py