Skip to content

Merge pull request #16 from strollby/feat/schema #82

Merge pull request #16 from strollby/feat/schema

Merge pull request #16 from strollby/feat/schema #82

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run lint 💅
run: |
black graphene_federation --check
mypy graphene_federation