mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-08 23:50:38 +03:00
54 lines
1.5 KiB
YAML
54 lines
1.5 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.13', python: '3.13-dev', os: ubuntu-latest, tox: py313}
|
|
- {name: '3.12', python: '3.12', os: ubuntu-latest, tox: py312}
|
|
- {name: '3.11', python: '3.11', 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}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install poetry
|
|
run: pipx install poetry
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
cache: 'poetry'
|
|
- run: poetry install --sync
|
|
- run: poetry run tox -e ${{ matrix.tox }}
|
|
- name: Upload coverage.xml
|
|
if: ${{ matrix.python == '3.10' }}
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: graphene-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
|