fix: Use importlib
to
#73
Workflow file for this run
This file contains 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: Continuous integration checks | |
on: | |
push: | |
schedule: | |
- cron: '0 7 * * 0' # weekly | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Python ${{ matrix.python-version }} / ${{ matrix.django-version }} | |
strategy: | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
django-version: | |
- "3.1" | |
- "3.2" | |
- "4.0" | |
- "4.1" | |
- "4.2" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements/tests.txt django=="${{ matrix.django-version }}.*" | |
pip freeze | |
- name: Run tests | |
run: | | |
pytest | |
quality-oldest-supported-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/tests.txt | |
pip install -r requirements/quality.txt | |
pip freeze | |
- name: Run quality checks | |
run: | | |
make quality | |
quality-latest-supported-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/tests.txt | |
pip install -r requirements/quality.txt | |
pip freeze | |
- name: Run quality checks | |
run: | | |
make quality | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/tests.txt | |
pip install -r requirements/docs.txt | |
pip freeze | |
- name: Build documentation | |
run: | | |
make docs |