chore(deps-dev): bump black from 24.10.0 to 25.1.0 in /examples #732
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-docs-src | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
env: | |
TESTCONTAINER_DOCKER_NETWORK: tomodachi-testcontainers | |
DOCKER_BUILDKIT: 1 | |
POETRY_VERSION: 2.1.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | POETRY_HOME="$HOME/.poetry" python - --yes | |
echo "$HOME/.poetry/bin" >> $GITHUB_PATH | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
cache: 'poetry' | |
- name: Install dependencies | |
run: | | |
poetry install --no-interaction --all-extras --with dev | |
poetry show --tree | |
- name: Create Docker network for running Testcontianers | |
run: docker network create ${{ env.TESTCONTAINER_DOCKER_NETWORK }} | |
- name: Run docs_src/ tests | |
run: poetry run make test-docs-src |