Skip to content

Bump mistune from 3.1.4 to 3.2.1 #52

Bump mistune from 3.1.4 to 3.2.1

Bump mistune from 3.1.4 to 3.2.1 #52

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.12', '3.13', '3.14']
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 uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Install dependencies
run: |
uv venv
uv pip install -e ".[test,advanced]"
- name: Lint with ruff
run: |
uv run ruff check .
uv run ruff format --check .
- name: Run tests with pytest
run: |
uv run pytest --cov=incline --cov-report=xml
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella