Skip to content

ci: add automatic PyPI publish workflow #2

ci: add automatic PyPI publish workflow

ci: add automatic PyPI publish workflow #2

Workflow file for this run

name: Code Quality
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run Ruff formatter check
run: ruff format --check deep_diff tests
- name: Run Ruff linter
run: ruff check deep_diff tests
- name: Check with mypy
run: mypy deep_diff --pretty