fix: 💚 disable lint CI

This commit is contained in:
ThatOneCalculator 2024-01-04 20:06:33 -08:00
parent 699fbefb8a
commit ea7ea52ba3
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 0 additions and 0 deletions

27
.github/workflows/lint-backend.disabled vendored Normal file
View file

@ -0,0 +1,27 @@
name: Python CI
on:
push:
branches: ['main']
pull_request:
jobs:
build:
name: 'Lint 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 pylint
- name: Lint backend
run: bun run lint:backend