#!/usr/bin/env just --justfile

mod docs

python := "python"

# Lint python source code
lint:
    {{ python }} -m flake8 sphinx_gha/

# Format python source code and other support files
format:
    {{ python }} -m black sphinx_gha/
    {{ python }} -m yaclog format
    just --fmt --unstable
    just docs format
