Skip to content

docs(boxsdkgen): modify can_view_path description and add confidence scores for structured extract (box/box-openapi#566) #110

docs(boxsdkgen): modify can_view_path description and add confidence scores for structured extract (box/box-openapi#566)

docs(boxsdkgen): modify can_view_path description and add confidence scores for structured extract (box/box-openapi#566) #110

Workflow file for this run

name: Format Check
on:
pull_request:
branches:
- combined-sdk
permissions:
contents: read
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Tox
run: pip install tox
- name: Run Format Check
run: |
tox -e format-check || (echo "Format check failed! Please run 'tox -e format' locally and fix formatting." && exit 1)