#!/bin/bash # Check if a Ceedling project existsif [ -f "project.yml" ]; then echo "Building and testing C project with Ceedling..." ceedling test:all exit $?else echo "No Ceedling project found in the current directory." exit 1fi
#!/bin/bash
# Check if a Ceedling project exists
if [ -f "project.yml" ]; then
echo "Building and testing C project with Ceedling..."
ceedling test:all
exit $?
else
echo "No Ceedling project found in the current directory."
exit 1
fi