Skip to content

docs: regenerate CHANGELOG.md without bad tag references #30

docs: regenerate CHANGELOG.md without bad tag references

docs: regenerate CHANGELOG.md without bad tag references #30

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set Python version
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run Ruff
run: uv run ruff check quadro/ && uv run ruff format --check quadro/
- name: Run Mypy
run: uv run mypy quadro/
- name: Run Bandit
run: uv run bandit -c pyproject.toml -r quadro/
- name: Run tests
run: uv run pytest tests/ --cov=quadro --cov-report=xml --cov-report=term
- name: Upload coverage to Codecov
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v3