Optimize queryset annotations & prefetches to cut DB time for test / finding / product views (issue #12575) #12113
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: Ruff Linter | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| ruff-linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install Ruff Linter | |
| run: pip install -r requirements-lint.txt | |
| - name: Run Ruff Linter | |
| run: ruff check --output-format=github . |