mirror of
https://github.com/DeBrosOfficial/network.git
synced 2025-10-06 10:19:07 +00:00
12 lines
231 B
Bash
12 lines
231 B
Bash
#!/bin/bash
|
|
|
|
echo -e "\nRunning tests:"
|
|
go test ./... # Runs all tests in your repo
|
|
status=$?
|
|
if [ $status -ne 0 ]; then
|
|
echo "Push aborted: some tests failed."
|
|
exit 1
|
|
else
|
|
echo "All tests passed. Proceeding with push."
|
|
fi
|