Skip to content

Fix for crasher in runmailer_pg #52

Fix for crasher in runmailer_pg

Fix for crasher in runmailer_pg #52

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Sync with tox.ini
include:
- python-version: 3.8
django-version: 2.2.19
- python-version: 3.9
django-version: 3.0.14
- python-version: 3.9
django-version: 3.1.12
- python-version: 3.9
django-version: 3.2.4
- python-version: 3.9
django-version: 4.0.3
- python-version: "3.10"
django-version: 4.0.3
- python-version: "3.10"
django-version: 4.1.9
- python-version: "3.10"
django-version: 4.2.2
- python-version: "3.11"
django-version: 4.2.2
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements*.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install Django==${{ matrix.django-version }}
pip install -e .
pip install -r requirements-test.txt
- name: Test suite
run: |
pytest
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
check-manifest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ '3.10' }}-${{ hashFiles('requirements*.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install check-manifest
- name: check-manifest
run: |
check-manifest