> In your case this can be solved that by creating a "wrapper" Git hook that > actually executes Nim to run your NimScript file with an extension.
yeah i went with
#!/bin/sh
echo "executing nim tests"
echo
nim e .github/scripts/test.nims |
while IFS= read -r line; do
echo "$line"
done
Run
