open-webui/.github/workflows/format-backend.yaml
Tibo De Peuter 0c13b17a3d
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
Python CI / Format Backend (latest, 3.11.2) (pull_request) Failing after 8s
Bun CI / Format & Build Frontend (pull_request) Successful in 49s
ci: Tweak python
2024-03-19 12:10:42 +01:00

31 lines
739 B
YAML

name: Python CI
on:
push:
branches: ['main']
pull_request:
jobs:
build:
name: 'Format Backend'
env:
PUBLIC_API_BASE_URL: ''
RUNNER_TOOL_CACHE: /toolcache
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- latest
python-version: [ '3.11.2' ]
steps:
- uses: actions/checkout@v4
- name: Use Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Use Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install yapf
- name: Format backend
run: bun run format:backend