#!/usr/bin/env bash set -euo pipefail # Simple CI test runner for GitHub Actions echo "๐Ÿงช Running RSpec test suite for CI..." # Create tmp directory if it doesn't exist mkdir -p tmp # Run RSpec with progress output and JUnit XML for CI reporting bundle exec rspec \ --format progress \ --format RspecJunitFormatter \ --out tmp/rspec_results.xml echo "โœ… All tests passed!" echo "๐Ÿ“Š Test results saved to tmp/rspec_results.xml"