Fix double base_url in get_url() for absolute URLs #220
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: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| env: | |
| PIP_DISABLE_PIP_VERSION_CHECK: '1' | |
| PY_COLORS: '1' | |
| jobs: | |
| python-django: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - '3.10' | |
| - '3.11' | |
| - '3.12' | |
| - '3.13' | |
| - '3.14' | |
| django-version: | |
| - '5.2' | |
| - '6.0' | |
| exclude: | |
| - { python-version: '3.10', django-version: '6.0' } | |
| - { python-version: '3.11', django-version: '6.0' } | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install prerequisites | |
| run: python -m pip install tox-gh-actions | |
| - name: Run tests (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}) | |
| run: tox | |
| env: | |
| DJANGO: ${{ matrix.django-version }} | |
| behave-latest: | |
| runs-on: ubuntu-latest | |
| env: | |
| TOXENV: behave-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - name: Install prerequisites | |
| run: python -m pip install tox | |
| - name: Run tests (${{ env.TOXENV }}) | |
| run: tox |