Compare commits

...

2 commits

Author SHA1 Message Date
Jeremiah Lowin
9c99b2c0fd Run static checks with --upgrade, remove lockfile check 2026-01-22 11:58:49 -05:00
Jeremiah Lowin
92cfc92de4 Remove uv lockfile monitoring from Dependabot 2026-01-22 09:39:52 -05:00
2 changed files with 1 additions and 16 deletions

View file

@ -1,11 +1,5 @@
version: 2
updates:
- package-ecosystem: "uv"
directory: "/"
schedule:
interval: "daily"
labels:
- "dependencies"
- package-ecosystem: "pip"
directory: "/"
schedule:

View file

@ -38,16 +38,7 @@ jobs:
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync
- 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"
run: uv sync --upgrade
- name: Run prek
uses: j178/prek-action@v1
env: