openai/chatkit-python
Publicmirrored from https://github.com/openai/chatkit-pythonAvailable
.github/workflows/ci.yml
33lines · modecode
| 1 | name: CI |
| 2 | |
| 3 | on: |
| 4 | pull_request: |
| 5 | workflow_dispatch: |
| 6 | |
| 7 | env: |
| 8 | UV_FROZEN: "1" |
| 9 | |
| 10 | jobs: |
| 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 | |