Skip to content

Add Django 5.0 support #18

Add Django 5.0 support

Add Django 5.0 support #18

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Add poetry
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: "1.5.1"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
poetry install
- name: Lint
run: |
poetry run make lint
- name: Test with tox
run: |
poetry run make test-all
- if: ${{ matrix.python-version == '3.12' }}
name: Code Coverage Summary Report
uses: irongut/CodeCoverageSummary@v1.0.2
with:
filename: coverage.xml
format: 'markdown'
output: 'both'