diff options
author | xengineering <me@xengineering.eu> | 2024-09-11 20:31:26 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-09-11 20:31:26 +0200 |
commit | 6d59ff7a68af2823b5566dd24e3ff4aa77cbc5fe (patch) | |
tree | eec8b9bce1f9759e9c0ee4e1b6e32cc49e7c0c8d | |
parent | 54029aac92f17ec87d3ef0bb73fcdac271b209c9 (diff) | |
download | ceres-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.
-rwxr-xr-x | tools/check.sh | 12 |
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}/..." |