name: CI on: push: branches: [ main ] jobs: test: runs-on: ubuntu-latest steps: - name: Check Python run: | /usr/bin/python3 --version || /usr/local/bin/python3 --version || echo "Python not found" - name: Install deps using pip3 run: | pip3 install -e ".[dev]" - name: Lint run: | ruff check src/ - name: Type check run: | mypy src/ - name: Test run: | pytest tests/ -v