openai/chatkit-python

Public

mirrored fromhttps://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d14ce4602e2002ef97ccff685ec14fb27c49c94c

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Makefile

34lines · modecode

1.PHONY: sync format format-check lint mypy pyright tests gen-docs build-docs serve-docs deploy-docs check
2
3install:
4 uv sync --all-extras --all-packages --group dev
5
6format:
7 uv run ruff format
8 uv run ruff check --fix
9
10format-check:
11 uv run ruff format --check
12
13lint:
14 uv run ruff check
15
16mypy:
17 uv run mypy .
18
19pyright:
20 uv run pyright
21
22test:
23 PYTHONPATH=. uv run pytest
24
25build:
26 uv build
27
28serve-docs:
29 uv run mkdocs serve
30
31deploy-docs:
32 uv run mkdocs gh-deploy --force --verbose
33
34check: format-check lint pyright test