JdrCydsek/open-webui
0
1name: Python CI2on:3 push:4 branches: ['main']5 pull_request:6jobs:7 build:8 name: 'Lint Backend'9 env:10 PUBLIC_API_BASE_URL: ''11 runs-on: ubuntu-latest12 strategy:13 matrix:14 node-version:15 - latest16 steps:17 - uses: actions/checkout@v418 - name: Use Python19 uses: actions/setup-python@v420 - name: Use Bun21 uses: oven-sh/setup-bun@v122 - name: Install dependencies23 run: |24 python -m pip install --upgrade pip25 pip install pylint26 - name: Lint backend27 run: bun run lint:backend28 