Skip to content

ruff --output-format=github . #121

ruff --output-format=github .

ruff --output-format=github . #121

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 wheel
- run: pip install --editable ".[dev]"
- run: codespell .
- run: ruff --output-format=github .
- run: black --check .
- run: mypy .
- run: pytest -vv .
- run: pytest --doctest-modules .
- run: safety check