mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-05-31 01:25:29 +00:00
Some checks failed
test / test-default-version (ubuntu-latest) (push) Successful in 1m6s
test / test-specific-version (0.3.2) (push) Successful in 1m14s
test / test-specific-version (0.3) (push) Successful in 1m23s
test / test-specific-version (0.3.0) (push) Successful in 1m15s
test / test-specific-version (0.3.x) (push) Successful in 1m20s
test / test-python-version (ubuntu-latest) (push) Successful in 1m12s
test / test-setup-cache (false, ubuntu-latest) (push) Successful in 1m0s
CodeQL / Analyze (TypeScript) (push) Failing after 3m12s
test / lint (push) Failing after 4m25s
test / test-no-python-version (push) Failing after 14m11s
test / test-cache-local (map[expected-cache-dir:/home/runner/work/_temp/setup-uv-cache os:ubuntu-latest]) (push) Failing after 14m13s
test / test-setup-cache-dependency-glob (push) Failing after 14m14s
test / test-setup-cache-requirements-txt (push) Failing after 14m15s
test / test-setup-cache (true, ubuntu-latest) (push) Failing after 14m16s
test / test-setup-cache (auto, ubuntu-latest) (push) Failing after 14m20s
test / test-musl (push) Failing after 14m21s
test / test-activate-environment (ubuntu-latest) (push) Failing after 14m22s
test / test-tool-install (ubuntu-latest) (push) Failing after 14m24s
test / test-uvx (push) Failing after 14m25s
test / test-with-explicit-token (push) Failing after 14m26s
test / test-checksum (map[checksum:4d9279ad5ca596b1e2d703901d508430eb07564dc4d8837de9e2fca9c90f8ecd os:ubuntu-latest]) (push) Failing after 14m27s
test / test-uv-file-version (push) Failing after 14m30s
test / test-malformed-pyproject-file-fallback (push) Failing after 14m31s
test / test-pyproject-file-version (push) Failing after 14m32s
test / test-pep440-version (push) Failing after 14m34s
test / test-semver-range (ubuntu-latest) (push) Failing after 14m36s
test / test-specific-version (>=0.3.0) (push) Failing after 14m38s
Update known versions / build (push) Has been cancelled
Release Drafter / ✏️ Draft release (push) Has been cancelled
test / test-default-version (macos-14) (push) Has been cancelled
test / test-default-version (macos-latest) (push) Has been cancelled
test / test-default-version (windows-latest) (push) Has been cancelled
test / test-semver-range (selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-checksum (map[checksum:a70cbfbf3bb5c08b2f84963b4f12c94e08fbb2468ba418a3bfe1066fbe9e7218 os:macos-latest]) (push) Has been cancelled
test / test-tool-install (macos-14) (push) Has been cancelled
test / test-tool-install (macos-latest) (push) Has been cancelled
test / test-tool-install (windows-latest) (push) Has been cancelled
test / test-tilde-expansion-tool-dirs (push) Has been cancelled
test / test-python-version (macos-latest) (push) Has been cancelled
test / test-python-version (windows-latest) (push) Has been cancelled
test / test-activate-environment (macos-latest) (push) Has been cancelled
test / test-activate-environment (windows-latest) (push) Has been cancelled
test / test-setup-cache (auto, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-setup-cache (auto, windows-latest) (push) Has been cancelled
test / test-setup-cache (false, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-setup-cache (false, windows-latest) (push) Has been cancelled
test / test-setup-cache (true, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-setup-cache (true, windows-latest) (push) Has been cancelled
test / test-cache-local (map[expected-cache-dir:/home/ubuntu/.cache/uv os:selfhosted-ubuntu-arm64]) (push) Has been cancelled
test / test-cache-local (map[expected-cache-dir:D:\a\_temp\setup-uv-cache os:windows-latest]) (push) Has been cancelled
test / test-setup-cache-local (push) Has been cancelled
test / test-tilde-expansion-cache-local-path (push) Has been cancelled
test / test-tilde-expansion-cache-dependency-glob (push) Has been cancelled
test / test-restore-cache (auto, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-restore-cache (auto, ubuntu-latest) (push) Has been cancelled
test / test-restore-cache (auto, windows-latest) (push) Has been cancelled
test / test-restore-cache (false, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-restore-cache (false, ubuntu-latest) (push) Has been cancelled
test / test-restore-cache (false, windows-latest) (push) Has been cancelled
test / test-restore-cache (true, selfhosted-ubuntu-arm64) (push) Has been cancelled
test / test-restore-cache (true, ubuntu-latest) (push) Has been cancelled
test / test-restore-cache (true, windows-latest) (push) Has been cancelled
test / test-restore-cache-requirements-txt (push) Has been cancelled
test / test-restore-cache-dependency-glob (push) Has been cancelled
test / test-restore-cache-local (push) Has been cancelled
test / cleanup-tilde-expansion-tests (push) Has been cancelled
test / all-tests-passed (push) Has been cancelled
51 lines
1.8 KiB
JSON
51 lines
1.8 KiB
JSON
{
|
|
"name": "setup-uv",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Set up your GitHub Actions workflow with a specific version of uv",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "biome format --fix",
|
|
"format-check": "biome format",
|
|
"lint": "biome lint --fix",
|
|
"package": "ncc build -o dist/setup src/setup-uv.ts && ncc build -o dist/save-cache src/save-cache.ts && ncc build -o dist/update-known-versions src/update-known-versions.ts",
|
|
"test": "jest",
|
|
"act": "act pull_request -W .github/workflows/test.yml --container-architecture linux/amd64 -s GITHUB_TOKEN=\"$(gh auth token)\"",
|
|
"update-known-versions": "RUNNER_TEMP=known_versions node dist/update-known-versions/index.js src/download/checksum/known-versions.ts \"$(gh auth token)\"",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/astral-sh/setup-uv.git"
|
|
},
|
|
"keywords": ["actions", "python", "setup", "uv"],
|
|
"author": "@eifinger",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^4.0.3",
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/glob": "^0.5.0",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.2",
|
|
"@octokit/core": "^7.0.2",
|
|
"@octokit/plugin-paginate-rest": "^12.0.0",
|
|
"@octokit/plugin-rest-endpoint-methods": "^14.0.0",
|
|
"@renovatebot/pep440": "^4.1.0",
|
|
"smol-toml": "^1.3.4",
|
|
"undici": "^7.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^22.15.21",
|
|
"@types/semver": "^7.7.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^29.7.0",
|
|
"js-yaml": "^4.1.0",
|
|
"ts-jest": "^29.3.2",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|