From 6bda6ba5398a35cc7765136f9bbd6aaa939a4d66 Mon Sep 17 00:00:00 2001 From: servostar Date: Mon, 1 Jul 2024 19:25:45 +0200 Subject: [PATCH] fixed run-ci script --- .gitea/workflows/ci.yml | 2 +- run-ci.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 run-ci.sh diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 37bc816..5229f73 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,4 +13,4 @@ jobs: - name: Install Typst CLI run: curl -fsSL https://typst.community/typst-install/install.sh | sh - name: Run CI - run: bash -c run-ci.sh + run: bash -c ./run-ci.sh diff --git a/run-ci.sh b/run-ci.sh old mode 100644 new mode 100755 index c7576d0..8980161 --- a/run-ci.sh +++ b/run-ci.sh @@ -9,6 +9,7 @@ function abort() { echo "Running tests..." +echo "Running test local-import..." typst compile tests/local-import/main.typ --root . || abort "local-import" echo "Tests completed successfully"