From cde19704b352bd47910ca2049abf35497c368413 Mon Sep 17 00:00:00 2001 From: Edouard Vanbelle Date: Thu, 18 Jun 2026 02:01:27 +0200 Subject: [PATCH] chore(ci): fix ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f584e87e..075ddcac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,7 +201,9 @@ jobs: - name: Fail if fixtures are stale (rebuild + commit them) run: git diff --exit-code tests/fixtures/plugins/ - name: Run plugin runtime tests - run: cargo test --features plugins plugins:: + # Quote: the trailing `::` confuses GitHub's YAML parser (mapping + # values not allowed) and aborts the whole workflow at load time. + run: 'cargo test --features plugins plugins::' rust-test: name: Server Unit and Functionnal Tests