Skip to content

Commit

Permalink
updated ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kanndil committed Sep 28, 2024
1 parent 032aa81 commit ea9ecc5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
- name: Run Tests
run: |
echo "Running test cases..."
for file in test/*.bench; do
echo "Running test cases..."
for file in test/*.bench; do
echo "Running podemquest with $file"
podemquest -i "$file" -o "output_${file##*/}.txt"
done
echo "Output files:"
ls -l output_*.txt # List the generated output files
echo "Contents of output_${file##*/}.txt:"
cat "output_${file##*/}.txt" # Output the contents of the generated file
echo "-----------------------------"
done

0 comments on commit ea9ecc5

Please sign in to comment.