Skip to content

sending to channel-id, channel resolving and listing #3038

sending to channel-id, channel resolving and listing

sending to channel-id, channel resolving and listing #3038

Workflow file for this run

name: Run pre-commit hooks
on:
workflow_dispatch:
pull_request:
permissions: {}
jobs:
code-quality:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Elementary
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
# mainly needed so mypy will have the dependencies it needs
- name: Install elementary
run: pip install -e .
- name: Install dev requirements
run: pip install -r dev-requirements.txt
- name: Run pre-commit hooks
run: pre-commit run --all-files --show-diff-on-failure