Skip to content

Bump python-multipart from 0.0.5 to 0.0.7 #101

Bump python-multipart from 0.0.5 to 0.0.7

Bump python-multipart from 0.0.5 to 0.0.7 #101

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
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
pip install tox tox-gh-actions
pip install -r requirements-dev.txt
- name: Run tests
run: tox
- uses: codecov/codecov-action@v1
- name: Linters
if: ${{ matrix.python-version != 3.6 }}
run: |
pylint ariadne_django tests setup.py
mypy ariadne_django --ignore-missing-imports
black -l 120 --check .
isort -c .