Skip to content

Workflow file for this run

- name: Debug No Args Test

Check failure on line 1 in .github/workflows/classroom.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/classroom.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
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"