Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Refactor example_streaming.py and md2term.py for consistency and read… #20

Refactor example_streaming.py and md2term.py for consistency and read…

Refactor example_streaming.py and md2term.py for consistency and read… #20

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --all-extras
- name: Run tests
run: uv run pytest
env:
FORCE_COLOR: 1
TERM: xterm-256color
COLORTERM: truecolor
NO_COLOR: ""
- name: Run linting
run: |
uv run ruff check .
uv run black --check .
- name: Run type checking
run: uv run mypy md2term.py