Skip to content

docs: improve the documentation #256

docs: improve the documentation

docs: improve the documentation #256

Workflow file for this run

name: Test suite workflow
on:
pull_request:
branches:
- 'master'
- 'open-release/*'
jobs:
Running-test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.8"]
django: ["32", "42"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache dependency
uses: actions/[email protected]
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/[email protected]
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}}