lint-backend.disabled 593 B

123456789101112131415161718192021222324252627
  1. name: Python CI
  2. on:
  3. push:
  4. branches: ['main']
  5. pull_request:
  6. jobs:
  7. build:
  8. name: 'Lint Backend'
  9. env:
  10. PUBLIC_API_BASE_URL: ''
  11. runs-on: ubuntu-latest
  12. strategy:
  13. matrix:
  14. node-version:
  15. - latest
  16. steps:
  17. - uses: actions/checkout@v4
  18. - name: Use Python
  19. uses: actions/setup-python@v5
  20. - name: Use Bun
  21. uses: oven-sh/setup-bun@v1
  22. - name: Install dependencies
  23. run: |
  24. python -m pip install --upgrade pip
  25. pip install pylint
  26. - name: Lint backend
  27. run: bun run lint:backend