mirror of
https://github.com/wiltodelta/remove-ai-watermarks.git
synced 2026-05-20 20:04:40 +02:00
a3843bb6ae
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
194 B
Bash
Executable File
12 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
uv sync --all-extras
|
|
uv run uv-outdated
|
|
uv run uv-secure --ignore-unfixed
|
|
uv run ruff check --fix
|
|
uv run ruff format
|
|
uv run pyright
|
|
uv run pytest -n auto
|