Skip to content

chore: Migrate package management to uv. Drop support for python 3.9 … #251

chore: Migrate package management to uv. Drop support for python 3.9 …

chore: Migrate package management to uv. Drop support for python 3.9 … #251

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.14"
- name: Install dependencies
run: uv sync --frozen --extra dev
- name: Run lint 💅
run: |
uv run black graphene_federation --check
uv run mypy graphene_federation