Skip to content

Keep GitHub Actions up to date with GitHub's Dependabot #119

Keep GitHub Actions up to date with GitHub's Dependabot

Keep GitHub Actions up to date with GitHub's Dependabot #119

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 --format=github .
- run: black --check .
- run: mypy .
- run: pytest -vv .
- run: pytest --doctest-modules .
- run: safety check