10000 Cancel remaining fields on exceptions · graphql-python/graphql-core@bd666f3 · GitHub
[go: up one dir, main page]

Skip to content

Cancel remaining fields on exceptions #465

Cancel remaining fields on exceptions

Cancel remaining fields on exceptions 5979 #465

Workflow file for this run

name: Code quality
on: [push, pull_request]
jobs:
lint:
name: 🧹 Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run code quality tests with tox
run: tox
env:
TOXENV: ruff,mypy,docs
0