Skip to content

Resolve #1 -- Add all messages inside a DM, Group, Channel to a Thread #13

Resolve #1 -- Add all messages inside a DM, Group, Channel to a Thread

Resolve #1 -- Add all messages inside a DM, Group, Channel to a Thread #13

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
lint-command:
- bandit -r . -x ./tests
- black --check --diff .
- isort --check-only --diff .
- pydocstyle .
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: python -m pip install -e .[lint]
- run: ${{ matrix.lint-command }}