Skip to content

chore: add quartic function #35

chore: add quartic function

chore: add quartic function #35

Workflow file for this run

name: mega_test
on: [push, pull_request]
jobs:
mega-test:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install uva
uses: astral-sh/setup-uv@v5
- name: setup up python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: install libs
run: |
uv venv
uv pip install -r requirements_dev.txt
uv run setup.py build_ext --inplace
uv pip install -e .
uv pip install .
- name: running testing
run: |
uv run pytest --verbose