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: