Skip to content

feat(Internal): Apply SOLID principles to project_io.py and `forge.… #180

feat(Internal): Apply SOLID principles to project_io.py and `forge.…

feat(Internal): Apply SOLID principles to project_io.py and `forge.… #180

Workflow file for this run

name: Lint & Test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Lint with Ruff
run: uv run ruff check .
- name: Run tests
run: uv run pytest tests -s -v