Skip to content

Commit 9f1f1fe

Browse files
authored
Run prettier (#78)
1 parent 6343f7c commit 9f1f1fe

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
npm install
2222
- run: |
2323
npm run all
24+
- name: Make sure no changes from linters are detected
25+
run: |
26+
git diff --exit-code
2427
test-default-version:
2528
runs-on: ${{ matrix.os }}
2629
strategy:

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,8 @@ the GitHub Actions Cache. This can speed up runs that reuse the cache by several
7171

7272
> [!TIP]
7373
>
74-
> On self-hosted runners this is usually not needed since the cache generated by uv
75-
> on the runner's filesystem is not removed after a run.
76-
> For more details see [Local cache path](#local-cache-path).
74+
> On self-hosted runners this is usually not needed since the cache generated by uv on the runner's
75+
> filesystem is not removed after a run. For more details see [Local cache path](#local-cache-path).
7776

7877
You can optionally define a custom cache key suffix.
7978

@@ -101,8 +100,7 @@ If you want to control when the cache is invalidated, specify a glob pattern wit
101100
`cache-dependency-glob` input. The cache will be invalidated if any file matching the glob pattern
102101
changes. The glob matches files relative to the repository root.
103102

104-
> [!NOTE]
105-
> The default is `**/uv.lock`.
103+
> [!NOTE] The default is `**/uv.lock`.
106104

107105
```yaml
108106
- name: Define a cache dependency glob
@@ -132,9 +130,8 @@ changes. The glob matches files relative to the repository root.
132130

133131
### Local cache path
134132

135-
This action controls where uv stores its cache on the runner's filesystem.
136-
You can change the default (`/tmp/setup-uv-cache`) by
137-
specifying the path with the `cache-local-path` input.
133+
This action controls where uv stores its cache on the runner's filesystem. You can change the
134+
default (`/tmp/setup-uv-cache`) by specifying the path with the `cache-local-path` input.
138135

139136
```yaml
140137
- name: Define a custom uv cache path

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ inputs:
1919
default: "false"
2020
cache-dependency-glob:
2121
description:
22-
'Glob pattern to match files relative to the repository root to control
23-
the cache.'
22+
"Glob pattern to match files relative to the repository root to control
23+
the cache."
2424
default: "**/uv.lock"
2525
cache-suffix:
2626
description: "Suffix for the cache key"

0 commit comments

Comments
 (0)