From 1741a31ff04a2ebf30d0797bd77cde1e6b2f68cf Mon Sep 17 00:00:00 2001 From: Matt Jones <47545907+SoundMatt@users.noreply.github.com> Date: Mon, 27 Jul 2026 18:18:49 -0700 Subject: [PATCH] fix: correct relay conform flag order in CI RELAY v1.13 fixed relay conform to reject --strict placed after the binary path instead of silently ignoring it. This repo currently pins an older RELAY release so it isn't broken by this yet, but the flag order was always wrong and will break on the next pin bump. Flags must precede the positional argument. Signed-off-by: Matt Jones <47545907+SoundMatt@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c85d47..b20e8a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -254,7 +254,7 @@ jobs: run: go install github.com/SoundMatt/RELAY/cmd/relay@v1.11.0 - name: RELAY conformance (strict) - run: relay conform ./target/release/rust-lin --strict + run: relay conform --strict ./target/release/rust-lin - name: RELAY interop (LIN golden vectors — must be EQUIVALENT) run: |