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"