Skip to content

Auto summarize conversations, add attachment count #777

Auto summarize conversations, add attachment count

Auto summarize conversations, add attachment count #777

name: Code Style Check
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Python dependencies
run: pip install black nbqa
- name: Run Black on Python files
run: black --check $(find . -type f -name "*.py")