Skip to content

fixed ReverseForeignKey ignoring **kwargs #23

fixed ReverseForeignKey ignoring **kwargs

fixed ReverseForeignKey ignoring **kwargs #23

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
django-version: [3.0, 3.1, 3.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: Install dependencies
run: |
python -m pip install --upgrade pip
python ./setup.py install
pip install -r requirements-dev.txt
pip install django==${{ matrix.django-version }}
- name: MyPy
run: |
mypy haul
- name: Lint
run: |
make lint
- name: Test
run: |
pytest --cov=haul tests