summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-09-11 20:31:26 +0200
committerxengineering <me@xengineering.eu>2024-09-11 20:31:26 +0200
commit6d59ff7a68af2823b5566dd24e3ff4aa77cbc5fe (patch)
treeeec8b9bce1f9759e9c0ee4e1b6e32cc49e7c0c8d /tools
parent54029aac92f17ec87d3ef0bb73fcdac271b209c9 (diff)
downloadceres-6d59ff7a68af2823b5566dd24e3ff4aa77cbc5fe.tar
ceres-6d59ff7a68af2823b5566dd24e3ff4aa77cbc5fe.tar.zst
ceres-6d59ff7a68af2823b5566dd24e3ff4aa77cbc5fe.zip
tools: Add check.sh
This script should contain any validation routines for the source code. Creating a symlink to it from .git/hooks/pre-commit for pre-commit validation might be a use case. In this initial version only the `go fmt` call is added to apply automated Go code formatting.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/check.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/check.sh b/tools/check.sh
new file mode 100755
index 0000000..ea72234
--- /dev/null
+++ b/tools/check.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+
+set -euf
+
+
+script="$(realpath "$0")"
+tools="$(dirname "$script")"
+root="$(dirname "$tools")"
+
+
+go fmt "${root}/..."