We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 746f107 commit ac4512aCopy full SHA for ac4512a
.github/workflows/cache_xmss_and_xmssmt_keys.yml
@@ -53,14 +53,15 @@ jobs:
53
runs-on: ubuntu-latest
54
steps:
55
- uses: actions/checkout@v4
56
-
57
- # Set up Python 3.9 environment, but could be changed as needed.
58
- - uses: actions/setup-python@v5
+ - name: Install uv
+ uses: astral-sh/setup-uv@v5
59
with:
60
- python-version: "3.9"
+ version: "latest"
+ enable-cache: true
61
+ cache-dependency-glob: "**/pyproject.toml"
62
- - name: Install dependencies
63
- run: pip install .[dev]
+ - name: Set up Python 3.9
64
+ run: uv python install 3.9
65
66
# Generate today's date for use in progress cache keys
67
# This ensures we get a new cache entry each day for incremental progress
0 commit comments