Skip to content

build(deps): bump extract-msg from 0.56.0 to 0.56.1 #293

build(deps): bump extract-msg from 0.56.0 to 0.56.1

build(deps): bump extract-msg from 0.56.0 to 0.56.1 #293

Workflow file for this run

name: "Linting"
on:
push:
branches: [main]
pull_request: {}
jobs:
lint:
name: "Python Code Quality and Lint (${{ matrix.group }})"
runs-on: ubuntu-latest
strategy:
matrix:
include:
- group: linting
commands: |
uv run --group lint ruff check src/kuckuck unittests
- group: type_check
commands: |
uv run --group type_check --extra cli --extra mcp mypy --show-error-codes src/kuckuck --strict
uv run --group type_check --extra cli --extra mcp mypy --show-error-codes unittests --strict
- group: spell_check
commands: |
uv run --group spell_check codespell --ignore-words=domain-specific-terms.txt src
steps:
- uses: actions/checkout@v7
- name: Set up uv
uses: astral-sh/setup-uv@v10.0.1
with:
python-version: 3.14
- name: Run ${{ matrix.group }}
run: |
${{ matrix.commands }}