Run static checks with --upgrade, remove lockfile check (#2988)

This commit is contained in:
Jeremiah Lowin 2026-01-22 12:31:31 -05:00 committed by GitHub
commit b77484e1a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 11 deletions

View file

@ -38,16 +38,8 @@ jobs:
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync
run: uv sync --upgrade
- name: Check lockfile is up to date
run: |
if ! uv lock --check; then
echo "❌ Lockfile is out of date!"
echo "To update the lockfile, run 'uv lock'."
exit 1
fi
echo "✅ Lockfile is up to date"
- name: Run prek
uses: j178/prek-action@v1
env:

View file

@ -62,7 +62,7 @@ async def subscribe_to_task_updates(
task_id=task_id,
task_key=task_key,
docket=docket,
state=event["state"],
state=ExecutionState(event["state"]),
poll_interval_ms=poll_interval_ms,
)
elif event["type"] == "progress":