We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a41f146 commit bcf5316Copy full SHA for bcf5316
1 file changed
.github/workflows/cleanup.yml
@@ -11,7 +11,7 @@ jobs:
11
cleanup:
12
runs-on: ubuntu-latest
13
permissions:
14
- contents: read # Does not need write access
+ contents: read
15
16
steps:
17
- name: Checkout repository
@@ -22,11 +22,13 @@ jobs:
22
with:
23
python-version: "3.12"
24
25
- - name: Set up uv
26
- uses: astral-sh/setup-uv@v1
+ - name: Install uv
+ uses: astral-sh/setup-uv@v5
27
28
- - name: Install Dependencies
29
- run: uv pip install boto3
+ - name: Install project and dependencies
+ run: |
30
+ uv sync --all-extras --dev
31
+ uv pip install -e . --no-deps
32
33
- name: Run Cleanup Script
34
run: python .github/scripts/cleanup_staging_bucket.py
0 commit comments