Skip to content

add max_tokens option #23

add max_tokens option

add max_tokens option #23

Workflow file for this run

name: Black
on: [push]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install black
- name: Checking the code format with Black
run: |
source .venv/bin/activate
python -m black --check $(git ls-files '*.py')