Skip to content

Removed debug print statements from the loop method #12

Removed debug print statements from the loop method

Removed debug print statements from the loop method #12

Workflow file for this run

---
name: Python Tests
on:
push:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: |
uv venv
uv pip install -e ".[dev]"
- name: Test with pytest
run: |
uv run python -m pytest -vv