Skip to content

Fix import in numerical #6

Fix import in numerical

Fix import in numerical #6

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
- closed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Dependencies
run: |
pip install -e .
pip install -r requirements.txt
pre-commit install
- name: Run Unit Tests
run: coverage run -m pytest -s tests
- name: Test Coverage
# TODO: Change this after finishing tests.
run: coverage report --fail-under=94
- name: Run Pre-Commit Hooks
run: pre-commit run --all-files