fix: refactor Makefile to fix checkmake maxbodylength violations (#95)

This commit is contained in:
Copilot
2025-11-11 22:32:21 +02:00
committed by GitHub
parent 3a122c3d0c
commit bec064d0b7
7 changed files with 104 additions and 82 deletions

12
scripts/deps-update.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
set -eu
echo "Updating all dependencies to latest versions..."
go get -u ./...
go mod tidy
echo ""
echo "Dependencies updated successfully!"
echo "Running tests to verify compatibility..."
go test ./...
echo ""
echo "Update complete. Run 'make lint-fix && make test' to verify."