Skip to content

Commit be9a65e

Browse files
committed
yml check
1 parent 39ce9d5 commit be9a65e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/c-cpp.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
./lab4 trace 1,2-4,3 100 3 \
3030
P1,0,5 P2,2,3 P3,4,2
3131
32-
- name: Verify build artifacts
32+
- name: Test the build artifacts
3333
run: |
3434
# Verify that the executable exists and is executable
35-
if [ ! -x ./cpu-scheduler ]; then echo "Executable not found" && exit 1; fi
35+
if [ ! -x ./lab4 ]; then
36+
echo "Executable not found or not executable"
37+
exit 1
38+
fi

0 commit comments

Comments
 (0)