pr_reviewer/start.sh
Andrew Ridgway b436a81300
Some checks failed
Build and Push Image / Build and push image (push) Failing after 6m58s
initial build into pipeline
2026-05-11 22:15:50 +10:00

12 lines
249 B
Bash
Executable File

#!/bin/bash
# Simple start script to build Docker image and run tests
set -e # Exit on any error
echo "Building Docker image..."
docker build -t pr-reviewer-test:latest .
echo "Running tests..."
python test_docker.py
echo "All tests completed!"