mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
31 lines
702 B
YAML
31 lines
702 B
YAML
name: Python CI
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
pull_request:
|
|
jobs:
|
|
build:
|
|
name: 'Format, Lint, & Build Backend'
|
|
env:
|
|
PUBLIC_API_BASE_URL: ''
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version:
|
|
- latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Python
|
|
uses: actions/setup-python@v4
|
|
- name: Use Bun
|
|
uses: oven-sh/setup-bun@v1
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install yapf
|
|
pip install pylint
|
|
- name: Lint backend
|
|
run: bun run lint:backend
|
|
- name: Format backend
|
|
run: bun run format:backend
|