From 6d59ff7a68af2823b5566dd24e3ff4aa77cbc5fe Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 11 Sep 2024 20:31:26 +0200 Subject: 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. --- tools/check.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 tools/check.sh (limited to 'tools') 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}/..." -- cgit v1.2.3-70-g09d2