From 99b0f0474b8c709992d2d82e9cfa8745d4715d14 Mon Sep 17 00:00:00 2001 From: pm-dev563 Date: Wed, 4 Feb 2026 14:38:45 +0700 Subject: [PATCH] Fix punctuation (#747) This is a minor punctuation fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d944b2e..89d41f7 100644 --- a/README.md +++ b/README.md @@ -276,7 +276,7 @@ the cache will not be found and the warning `No GitHub Actions cache found for k While this might be irritating at first, it is expected behaviour and the cache will be created and reused in later workflows. -The reason for the warning is, that we have to way to know if this is the first run of a new +The reason for the warning is that we have to way to know if this is the first run of a new cache key or the user accidentally misconfigured the cache-dependency-glob or cache-suffix (see [Caching documentation](docs/caching.md)) and the cache never gets used. @@ -289,7 +289,7 @@ Running `actions/checkout` after `setup-uv` **is not supported**. ### Does `setup-uv` also install my project or its dependencies automatically? -No, `setup-uv` alone wont install any libraries from your `pyproject.toml` or `requirements.txt`, it only sets up `uv`. +No, `setup-uv` alone won't install any libraries from your `pyproject.toml` or `requirements.txt`, it only sets up `uv`. You should run `uv sync` or `uv pip install .` separately, or use `uv run ...` to ensure necessary dependencies are installed. ### Why is a changed cache not detected and not the full cache uploaded?