mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-16 17:30:43 -07:00
- Use right-recursive descent for proper RTL precedence - Add bin/liquid-spec-all-adapters for CI workflow - Update CI to use dedicated script Fixes 128 precedence test failures from original implementation. Co-Authored-By: Claude Opus 4.5 <[email protected]>
6 lines
147 B
Bash
Executable File
6 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for adapter in spec/*.rb; do
|
|
echo "=== Running $adapter ==="
|
|
bundle exec liquid-spec run "$adapter" --no-max-failures
|
|
done
|