Skip to content

Add inference quickstart guide #2829

Add inference quickstart guide

Add inference quickstart guide #2829

Workflow file for this run

name: Lint (type checking, security, code quality, ruff)
on:
pull_request:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: false
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Linting
run: |
pip install -r requirements-dev.txt
pre-commit run --all-files