name: Test on: push: branches: [main, develop] pull_request: branches: [main, develop] jobs: test: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e ".[dev]" - name: Lint with Ruff run: | ruff check src/ tests/ - name: Format check with Black run: | black --check src/ tests/ - name: Type check with mypy (non-blocking) run: | mypy src/ --ignore-missing-imports || echo "⚠️ mypy found type issues (non-blocking)" continue-on-error: true - name: Test with pytest run: | pytest tests/ -v --cov=src --cov-report=xml --cov-report=term - name: Upload coverage uses: codecov/codecov-action@v3 with: file: ./coverage.xml fail_ci_if_error: false