Skip to content

Update CKEditor 5 package, add type annotations, and improve error ha… #232

Update CKEditor 5 package, add type annotations, and improve error ha…

Update CKEditor 5 package, add type annotations, and improve error ha… #232

Workflow file for this run

name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install --upgrade pip setuptools ruff
- run: pip install -e ".[dev]"
- run: black --check .
- run: codespell --ignore-words-list="ro" --skip="*.json,*.lock,./.git"
- run: ruff check .
- run: pip install --editable .
- run: mypy --non-interactive .
- run: cp -R django_ckeditor_5 example/blog
- run: cd example
- run: pip install -e ".[dev]"
- run: pytest example/blog
- run: safety check