mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-15 06:08:59 +03:00
3058118e8f
* Update Django's main branch name * Add Python 3.9 to tox * Update base gh action versions * Add Django 3.2 to tests * Remove redundant Django 1.11 references * Update setup.py for new Django and Python versions
29 lines
684 B
YAML
29 lines
684 B
YAML
name: Tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 4
|
|
matrix:
|
|
django: ["2.2", "3.0", "3.1", "3.2"]
|
|
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
|
|
- name: Test with tox
|
|
run: tox
|
|
env:
|
|
DJANGO: ${{ matrix.django }}
|
|
TOXENV: ${{ matrix.toxenv }}
|