Filter search results by media type (photos / videos) #99
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: lint-backend | |
| on: | |
| push: | |
| branches: [dev] | |
| paths: | |
| - 'apps/backend/**' | |
| - '.github/workflows/lint-backend.yml' | |
| pull_request: | |
| paths: | |
| - 'apps/backend/**' | |
| - '.github/workflows/lint-backend.yml' | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.14" | |
| - run: pip install ruff | |
| - name: ruff check | |
| run: ruff check apps/backend | |
| - name: ruff format --check | |
| run: ruff format --check apps/backend |