SQSCANGHA-25 Rewrite tests using GitHub Actions

This commit is contained in:
Julien HENRY
2024-05-13 17:07:56 +02:00
committed by Antoine Vinot
parent 6abcb2537c
commit be64f35726
5 changed files with 137 additions and 118 deletions

8
test/assertFileExists Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
error() { echo -e "\\e[31m✗ $*\\e[0m"; }
if [ ! -f $1 ]; then
error "File '$1' not found"
exit 1
fi