dhbw-abb-typst-template/run-ci.sh

19 lines
356 B
Bash
Raw Normal View History

2024-07-01 14:17:54 +00:00
#!/bin/bash
set -e
function abort() {
echo "test case `$1` has failed" 1>&2
exit 1
}
echo "Compiling template..."
typst compile template/main.typ --root . || abort "template"
2024-07-01 14:17:54 +00:00
echo "Running tests..."
2024-07-01 17:25:45 +00:00
echo "Running test local-import..."
2024-07-01 14:17:54 +00:00
typst compile tests/local-import/main.typ --root . || abort "local-import"
echo "Tests completed successfully"