Use better examples for cache-dependency-glob

Adding the path separator `/` makes sure the files get found no matter where they are in the repo.
This commit is contained in:
Kevin Stillhammer 2024-09-16 15:45:50 +02:00
parent 9be1dd9b54
commit 47f135552a
No known key found for this signature in database

View file

@ -109,7 +109,7 @@ changes. The glob matches files relative to the repository root.
uses: astral-sh/setup-uv@v2
with:
enable-cache: true
cache-dependency-glob: "**requirements*.txt"
cache-dependency-glob: "**/requirements*.txt"
```
```yaml
@ -118,8 +118,8 @@ changes. The glob matches files relative to the repository root.
with:
enable-cache: true
cache-dependency-glob: |
**requirements*.txt
**pyproject.toml
**/requirements*.txt
**/pyproject.toml
```
```yaml