openai/chatkit-python

Public

mirrored from https://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6988ea0a4ea7ee9e1d2f6360544fc21e9eff1717

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/ci.yml

33lines · modecode

1name: CI
2
3on:
4 pull_request:
5 workflow_dispatch:
6
7env:
8 UV_FROZEN: "1"
9
10jobs:
11 ci:
12 name: CI
13 runs-on: ubuntu-latest
14 steps:
15 - name: Checkout
16 uses: actions/checkout@v4
17
18 - name: Setup uv
19 uses: astral-sh/setup-uv@v5
20 with:
21 enable-cache: true
22
23 - name: Install
24 run: make sync
25
26 - name: Lint
27 run: make lint
28
29 - name: Type check
30 run: make pyright
31
32 - name: Test
33 run: make test
34