Skip to content

Experimenting with uv #239

Experimenting with uv

Experimenting with uv #239

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install uv
- run: uv venv
- run: uv pip install --requirement pyproject.toml --all-extras
- run: .venv/bin/ruff format --check prosemirror tests
- run: .venv/bin/ruff prosemirror tests
- run: .venv/bin/mypy prosemirror