Skip to content

[FEATURE] Add support for Mistral via the mistral Python SDK #430

[FEATURE] Add support for Mistral via the mistral Python SDK

[FEATURE] Add support for Mistral via the mistral Python SDK #430

Workflow file for this run

name: Black Code Formatter Check
on:
pull_request:
paths:
- '**/*.py'
- '**/*.ipynb'
jobs:
black-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11' # Specify the version of Python you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "black[jupyter]"
- name: Run Black
run: black --diff --check .