Skip to content

Merge pull request #138 from knmlprz/dependabot/pip/llm/tqdm-4.66.3 #56

Merge pull request #138 from knmlprz/dependabot/pip/llm/tqdm-4.66.3

Merge pull request #138 from knmlprz/dependabot/pip/llm/tqdm-4.66.3 #56

Workflow file for this run

name: Check Code Formatting
on:
push:
branches:
- '*'
jobs:
format_check:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff
- name: Run Black
run: black --check .
- name: Run Ruff
run: ruff check .