Files
harmony/build/ci.sh
Jean-Gabriel Gill-Couture 907ae04195
Some checks failed
Run Check Script / check (pull_request) Failing after 9s
chore: Add book.sh script and ci.sh, moved check.sh to build/ folder
2026-03-19 22:43:32 -04:00

17 lines
229 B
Bash
Executable File

#!/bin/sh
set -e
cd "$(dirname "$0")/.."
BRANCH="${1:-main}"
echo "=== Running CI for branch: $BRANCH ==="
echo "--- Checking code ---"
./build/check.sh
echo "--- Building book ---"
./build/book.sh
echo "=== CI passed ==="