Bump certifi from 2023.7.22 to 2024.7.4 #105
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ | |
3.7, | |
3.8, | |
3.9, | |
'3.10', | |
'3.11', | |
] | |
django-version: [ | |
"django>=3.2,<4.0", | |
"django>=4.0,<4.1", | |
"django>=4.1,<4.2", | |
"django>=4.2,<5.0", | |
] | |
exclude: | |
- python-version: 3.7 | |
django-version: "django>=4.0,<4.1" | |
- python-version: 3.7 | |
django-version: "django>=4.1,<4.2" | |
- python-version: 3.7 | |
django-version: "django>=4.2,<5.0" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '${{ matrix.python-version }}' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U pip poetry | |
poetry install | |
poetry run pip install -U "${{ matrix.django-version }}" | |
- name: Run QA checks | |
run: make qa | |
- name: Run tests suite | |
run: poetry run pytest |