graphene-django/.github/workflows/tests.yml

35 lines
884 B
YAML
Raw Normal View History

2020-05-01 16:04:36 +03:00
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"]
include:
- django: "3.2"
python-version: "3.10"
- django: "4.0"
python-version: "3.10"
- django: "main"
python-version: "3.10"
2020-05-01 16:04:36 +03:00
steps:
- uses: actions/checkout@v2
2020-05-01 16:04:36 +03:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
2020-05-01 16:04:36 +03:00
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 }}