Skip to content

Commit a3544d4

Browse files
committed
run dep upgrade tests weekly
1 parent fb98f1a commit a3544d4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ on:
1616
default: false
1717
type: boolean
1818
schedule:
19-
- cron: '0 13 * * *' # Runs at 6 am pacific every day
19+
# Every Sunday at 9:00 AM Los Angeles time.
20+
# GitHub cron is UTC; 09:00 PT == 17:00 UTC (PST).
21+
- cron: '0 17 * * 0'
2022

2123
jobs:
2224
build:
@@ -54,6 +56,9 @@ jobs:
5456
uses: astral-sh/setup-uv@v6
5557
with:
5658
enable-cache: true
59+
- name: Upgrade all dependencies for our weekly runs
60+
if: github.event_name == 'schedule'
61+
run: uv lock --upgrade
5762
- name: Install Just
5863
uses: extractions/setup-just@v3
5964

0 commit comments

Comments
 (0)