Skip to content

Merge pull request #131 from knmlprz/dependabot/pip/llm/idna-3.7 #39

Merge pull request #131 from knmlprz/dependabot/pip/llm/idna-3.7

Merge pull request #131 from knmlprz/dependabot/pip/llm/idna-3.7 #39

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 .