This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Debug No Args Test | ||
run: | | ||
echo "Running: ./assignment" | ||
./assignment | ||
echo "Exit Code: $?" | ||
- name: Debug One Arg Test | ||
run: | | ||
echo "Running: ./assignment 1" | ||
./assignment 1 | ||
echo "Exit Code: $?" | ||
- name: Debug Three Args Test | ||
run: | | ||
echo "Running: ./assignment 1 2 3" | ||
./assignment 1 2 3 | ||
echo "Exit Code: $?" | ||
- name: Debug Valid Args Test | ||
run: | | ||
echo "Running: ./assignment 5 10" | ||
./assignment 5 10 | ||
echo "Exit Code: $?" | ||
echo "Contents of matrix.txt:" | ||
cat matrix.txt || echo "matrix.txt not found" |