mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-14 05:37:02 +03:00
40 lines
951 B
YAML
40 lines
951 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 4
|
|
matrix:
|
|
django: ["3.2", "4.2", "5.0"]
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
exclude:
|
|
- django: "3.2"
|
|
python-version: "3.11"
|
|
- django: "3.2"
|
|
python-version: "3.12"
|
|
- django: "5.0"
|
|
python-version: "3.8"
|
|
- django: "5.0"
|
|
python-version: "3.9"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
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 }}
|