Skip to content

Add kick extension and user management services #85

Add kick extension and user management services

Add kick extension and user management services #85

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Black formatting check
run: black --check bot tests db
- name: Mypy type check
run: mypy bot tests
- name: Pytest
run: pytest