Skip to content

chore(deps-dev): bump the pip-minor-and-patch group with 3 updates #344

chore(deps-dev): bump the pip-minor-and-patch group with 3 updates

chore(deps-dev): bump the pip-minor-and-patch group with 3 updates #344

Workflow file for this run

# Lint with ruff
# Check format with ruff
# Check types with mypy
name: quality-check
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
permissions:
contents: read # for checkout
jobs:
quality-check:
# Do not run for automated release commits (otherwise we would run into a deadlock situation)
if: ${{ !contains(github.event.head_commit.message, 'chore(release):') }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
uses: abatilo/[email protected]
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- name: View poetry version
run: poetry --version
- name: Install dependencies
run: poetry install --with dev
- name: Lint with ruff
run: poetry run ruff check .
- name: Check format with ruff
run: poetry run ruff format . --check
- name: Check types with mypy
run: poetry run mypy .