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