Skip to content

Commit bcf5316

Browse files
testing staging bucket cleanup workflow
1 parent a41f146 commit bcf5316

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/cleanup.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
cleanup:
1212
runs-on: ubuntu-latest
1313
permissions:
14-
contents: read # Does not need write access
14+
contents: read
1515

1616
steps:
1717
- name: Checkout repository
@@ -22,11 +22,13 @@ jobs:
2222
with:
2323
python-version: "3.12"
2424

25-
- name: Set up uv
26-
uses: astral-sh/setup-uv@v1
25+
- name: Install uv
26+
uses: astral-sh/setup-uv@v5
2727

28-
- name: Install Dependencies
29-
run: uv pip install boto3
28+
- name: Install project and dependencies
29+
run: |
30+
uv sync --all-extras --dev
31+
uv pip install -e . --no-deps
3032
3133
- name: Run Cleanup Script
3234
run: python .github/scripts/cleanup_staging_bucket.py

0 commit comments

Comments
 (0)