mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-22 17:47:12 +03:00
8ae576394e
* 💥 Stop supporting EOL djangos and pythons * 👷 Run only supported version in test workflow
31 lines
747 B
YAML
31 lines
747 B
YAML
name: Tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 4
|
|
matrix:
|
|
django: ["3.2", "4.0", "4.1"]
|
|
python-version: ["3.8", "3.9", "3.10"]
|
|
include:
|
|
- django: "3.2"
|
|
python-version: "3.7"
|
|
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 }}
|