Skip to content

feat(docs): enhance minting process documentation with visual aids and structured sections #1661

feat(docs): enhance minting process documentation with visual aids and structured sections

feat(docs): enhance minting process documentation with visual aids and structured sections #1661

name: Test Python Examples
on:
pull_request:
branches:
- main
jobs:
test:
name: Test Python Examples
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./examples/developer-hub-python
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Format with ruff
run: uv run ruff format --diff
- name: Lint with ruff
run: uv run ruff check --diff
- name: Run tests
run: uv run pytest -v