mirror of
https://github.com/ivuorinen/gibidify.git
synced 2026-01-26 11:34:03 +00:00
13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
#!/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."
|