perf: optimize find_all_tags_for with caching and indexing #176
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: Test suite workflow | |
| on: | |
| pull_request: | |
| branches: | |
| - 'master' | |
| jobs: | |
| Running-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 2 | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| django: ["42", "52"] | |
| exclude: | |
| - python-version: "3.12" | |
| django: "42" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Cache dependency | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/test.txt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip- | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Dev Requirements | |
| run: | | |
| make install-dev-dependencies | |
| - name: Run Python Tests | |
| run: | | |
| export TOXENV=${TOX_ENV//./} | |
| make run-tests | |
| env: | |
| TOX_ENV: py${{matrix.python-version}}-django${{matrix.django}} |