Skip to content

chore(deps): bump web3 from 7.12.1 to 7.14.0 in /examples/developer-hub-python in the examples-uv group #1748

chore(deps): bump web3 from 7.12.1 to 7.14.0 in /examples/developer-hub-python in the examples-uv group

chore(deps): bump web3 from 7.12.1 to 7.14.0 in /examples/developer-hub-python in the examples-uv group #1748

name: Test Python Examples
on:
pull_request:
branches:
- main
paths:
- "examples/developer-hub-python/**"
- ".github/workflows/test-python-examples.yml"
permissions:
contents: read
jobs:
test:
name: Test Python Examples
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./examples/developer-hub-python
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
enable-cache: true
- name: Install dependencies
run: uv sync --frozen --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