fix(infra): create pre commit script and port vertex as lazy import #15185
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Checks | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
- 'release/**' | |
jobs: | |
mypy-check: | |
# See https://runs-on.com/runners/linux/ | |
runs-on: [runs-on,runner=8cpu-linux-x64,"run-id=${{ github.run_id }}"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
cache-dependency-path: | | |
backend/requirements/default.txt | |
backend/requirements/dev.txt | |
backend/requirements/model_server.txt | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --retries 5 --timeout 30 -r backend/requirements/default.txt | |
pip install --retries 5 --timeout 30 -r backend/requirements/dev.txt | |
pip install --retries 5 --timeout 30 -r backend/requirements/model_server.txt | |
- name: Generate OpenAPI schema | |
working-directory: ./backend | |
env: | |
PYTHONPATH: "." | |
run: | | |
python scripts/onyx_openapi_schema.py --filename generated/openapi.json | |
- name: Generate OpenAPI Python client | |
working-directory: ./backend | |
run: | | |
docker run --rm \ | |
-v "${{ github.workspace }}/backend/generated:/local" \ | |
openapitools/openapi-generator-cli generate \ | |
-i /local/openapi.json \ | |
-g python \ | |
-o /local/onyx_openapi_client \ | |
--package-name onyx_openapi_client \ | |
--skip-validate-spec \ | |
--openapi-normalizer "SIMPLIFY_ONEOF_ANYOF=true,SET_OAS3_NULLABLE=true" | |
- name: Run MyPy | |
run: | | |
cd backend | |
mypy . | |
- name: Check import order with reorder-python-imports | |
run: | | |
cd backend | |
find ./onyx -name "*.py" | xargs reorder-python-imports --py311-plus | |
- name: Check code formatting with Black | |
run: | | |
cd backend | |
black --check . |