Skip to content

add footnote to sidebar #33

add footnote to sidebar

add footnote to sidebar #33

Workflow file for this run

name: Test Compatibility on Tag Release
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: [3.12]
django-version: ['5.0']
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install -U pip
pip install tox tox-gh-actions
pip install django==${{ matrix.django-version }}
- name: Run Tests
run: |
tox