8000 Bugfix: call `resolver` function in `DjangoConnectionField` as documented (#1529) · graphql-python/graphene-django@e69e4a0 · GitHub
[go: up one dir, main page]

Skip to content

Bugfix: call resolver function in DjangoConnectionField as docume… #1336

Bugfix: call resolver function in DjangoConnectionField as docume…

Bugfix: call resolver function in DjangoConnectionField as docume… #1336

Workflow file for this run

name: Lint
on:
push:
branches: ["main"]
pull_request:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run pre-commit 💅
run: tox
env:
TOXENV: pre-commit
0