diff --git a/docs/integrations/github_actions.md b/docs/integrations/github_actions.md index 5e02a045c5c..61689799731 100644 --- a/docs/integrations/github_actions.md +++ b/docs/integrations/github_actions.md @@ -74,12 +74,14 @@ If you want to match versions covered by Black's version: "~= 22.0" ``` -If you want to read the version from `pyproject.toml`, set `use_pyproject` to `true`. Note that this requires Python >= 3.11, so using the setup-python action may be required, for example: +If you want to read the version from `pyproject.toml`, set `use_pyproject` to `true`. +Note that this requires Python >= 3.11, so using the setup-python action may be +required, for example: ```yaml - uses: actions/setup-python@v5 with: - python-version: '3.13' + python-version: "3.13" - uses: psf/black@stable with: options: "--check --verbose"