Skip to content

Bump version to 0.9.8. #6

Bump version to 0.9.8.

Bump version to 0.9.8. #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
name: pytest (Python ${{ matrix.python-version }})
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: uv run --extra dev pytest --cov=betterhtmlchunking --cov-report=term-missing
build:
runs-on: ubuntu-latest
name: build package
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v8.2.0
- name: Build sdist and wheel
run: uv build
- name: Check package metadata
run: uvx twine check dist/*