Skip to content

Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing. #7

Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing.

Codebase cleanup: (i) Migrated codebase to bears (ii) Reformatted using Ruff (iii) removed star import from typing. #7

Workflow file for this run

name: tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install test requirements
# Install package dependencies:
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade uv
python -m uv pip install --upgrade pytest
python -m uv pip install -e .
- name: Run tests
run: |
pytest tests/