From b0961e7a60e77ee26d77c883718efb21e07a3cb9 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Fri, 5 Jun 2026 09:01:16 -0500 Subject: [PATCH] fix(ci): fix YAML syntax error in test.yml Quote shell:: argument to fix YAML parsing error at line 121. The double colon was being interpreted as a YAML mapping value. Co-Authored-By: Claude Sonnet 4.5 --- .gitea/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 0b9c7479..a2a5dda4 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -118,7 +118,7 @@ jobs: - run: cargo test --manifest-path src-tauri/Cargo.toml -- --test-threads=1 - name: Run shell module tests - run: cargo test --manifest-path src-tauri/Cargo.toml shell:: -- --test-threads=1 + run: 'cargo test --manifest-path src-tauri/Cargo.toml "shell::" -- --test-threads=1' frontend-typecheck: runs-on: ubuntu-latest