2323 uv-dependency-install-flags : " --all-extras --group dev"
2424 - name : mypy
2525 run : |
26- MYPYPATH=stubs uv run mypy src
26+ MYPYPATH=stubs uv run --no-sync mypy src
2727
2828 docs :
2929 if : ${{ !github.event.pull_request.draft }}
@@ -41,16 +41,16 @@ jobs:
4141 uv-dependency-install-flags : " --all-extras --group docs"
4242 - name : docs
4343 run : |
44- uv run mkdocs build --strict
44+ uv run --no-sync mkdocs build --strict
4545 - uses : ./.github/actions/setup
4646 with :
4747 python-version : " 3.11"
4848 uv-dependency-install-flags : " --all-extras --group docs --group dev"
4949 - name : docs-with-changelog
5050 run : |
5151 # Check CHANGELOG will build too
52- uv run towncrier build --yes
53- uv run mkdocs build --strict
52+ uv run --no-sync towncrier build --yes
53+ uv run --no-sync mkdocs build --strict
5454 # Just in case, undo the staged changes
5555 git restore --staged . && git restore .
5656
@@ -230,7 +230,7 @@ jobs:
230230 python-version : ${{ matrix.python-version }}
231231 - name : Build package
232232 run : |
233- uv run python scripts/add-locked-targets-to-pyproject-toml.py
233+ uv run --no-sync python scripts/add-locked-targets-to-pyproject-toml.py
234234 cat pyproject.toml
235235 uv build
236236 # Just in case, undo the changes to `pyproject.toml`
@@ -258,5 +258,5 @@ jobs:
258258 run : |
259259 TEMP_FILE=$(mktemp)
260260 uv export --no-dev > $TEMP_FILE
261- uv run liccheck -r $TEMP_FILE -R licence-check.txt
261+ uv run --no-sync liccheck -r $TEMP_FILE -R licence-check.txt
262262 cat licence-check.txt
0 commit comments