Some checks failed
Build and Push Image / Build and push image (push) Failing after 6m58s
12 lines
249 B
Bash
Executable File
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!" |