chore: add quartic function #35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |