mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-05-16 22:24:45 +00:00
Change Prettier settings (#36)
## Summary I know this is a little tedious but I'd prefer to use the same settings as in Ruff.
This commit is contained in:
parent
1785c7bde0
commit
182c9c7e92
32 changed files with 5536 additions and 5497 deletions
40
action.yml
40
action.yml
|
@ -1,42 +1,42 @@
|
|||
name: 'Python setup uv'
|
||||
description: 'Set up your GitHub Actions workflow with a specific version of uv'
|
||||
author: 'eifinger'
|
||||
name: "Python setup uv"
|
||||
description: "Set up your GitHub Actions workflow with a specific version of uv"
|
||||
author: "eifinger"
|
||||
inputs:
|
||||
version:
|
||||
description: 'The version of uv to install'
|
||||
default: '0.4.4'
|
||||
description: "The version of uv to install"
|
||||
default: "0.4.4"
|
||||
checksum:
|
||||
description: 'The checksum of the uv version to install'
|
||||
description: "The checksum of the uv version to install"
|
||||
required: false
|
||||
github-token:
|
||||
description:
|
||||
'Used to increase the rate limit when retrieving versions and downloading
|
||||
uv.'
|
||||
"Used to increase the rate limit when retrieving versions and downloading
|
||||
uv."
|
||||
required: false
|
||||
enable-cache:
|
||||
description: 'Enable caching of the uv cache'
|
||||
default: 'false'
|
||||
description: "Enable caching of the uv cache"
|
||||
default: "false"
|
||||
cache-dependency-glob:
|
||||
description:
|
||||
'Glob pattern to match files relative to the repository root to control
|
||||
the cache. e.g. "uv.lock"'
|
||||
required: false
|
||||
cache-suffix:
|
||||
description: 'Suffix for the cache key'
|
||||
description: "Suffix for the cache key"
|
||||
required: false
|
||||
cache-local-path:
|
||||
description: 'Local path to store the cache.'
|
||||
default: '/tmp/setup-uv-cache'
|
||||
description: "Local path to store the cache."
|
||||
default: "/tmp/setup-uv-cache"
|
||||
outputs:
|
||||
uv-version:
|
||||
description: 'The installed uv version. Useful when using latest.'
|
||||
description: "The installed uv version. Useful when using latest."
|
||||
cache-hit:
|
||||
description: 'A boolean value to indicate a cache entry was found'
|
||||
description: "A boolean value to indicate a cache entry was found"
|
||||
runs:
|
||||
using: 'node20'
|
||||
main: 'dist/setup/index.js'
|
||||
post: 'dist/save-cache/index.js'
|
||||
using: "node20"
|
||||
main: "dist/setup/index.js"
|
||||
post: "dist/save-cache/index.js"
|
||||
post-if: success()
|
||||
branding:
|
||||
icon: 'package'
|
||||
color: 'blue'
|
||||
icon: "package"
|
||||
color: "blue"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue