feat: the app (#2)

This commit is contained in:
2025-03-24 00:38:41 +02:00
committed by GitHub
parent 3470e255a7
commit e904b1beb3
12 changed files with 416 additions and 123 deletions

13
action/entrypoint.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
set -e
if [ -z "$INPUT_TEST_RESULTS" ]; then
echo "Missing test results input file"
exit 1
fi
OUTPUT_FILE="go-test-results.sarif"
/go-test-sarif "$INPUT_TEST_RESULTS" "$OUTPUT_FILE"
echo "Generated SARIF report: $OUTPUT_FILE"