mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-14 13:46:54 +03:00
cbf59a88ad
* Add Python 3.11 release candidate 1 to the testing https://www.python.org/download/pre-releases * Update tests.yml
67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
name: 📄 Tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*.x'
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '*.md'
|
|
- '*.rst'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- '*.x'
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '*.md'
|
|
- '*.rst'
|
|
jobs:
|
|
tests:
|
|
# runs the test suite
|
|
name: ${{ matrix.name }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- {name: '3.11', python: '3.11-dev', os: ubuntu-latest, tox: py311}
|
|
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
|
|
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
|
|
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
|
|
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
|
|
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
|
|
- name: update pip
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install --upgrade setuptools wheel
|
|
|
|
- name: get pip cache dir
|
|
id: pip-cache
|
|
run: echo "::set-output name=dir::$(pip cache dir)"
|
|
|
|
- name: cache pip dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.pip-cache.outputs.dir }}
|
|
key: pip|${{ runner.os }}|${{ matrix.python }}|${{ hashFiles('setup.py') }}
|
|
|
|
- run: pip install tox
|
|
- run: tox -e ${{ matrix.tox }}
|
|
- name: Upload coverage.xml
|
|
if: ${{ matrix.python == '3.10' }}
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: graphene-sqlalchemy-coverage
|
|
path: coverage.xml
|
|
if-no-files-found: error
|
|
- name: Upload coverage.xml to codecov
|
|
if: ${{ matrix.python == '3.10' }}
|
|
uses: codecov/codecov-action@v3
|