Skip to content

Commit 3c7289c

Browse files
try
1 parent 0bf9138 commit 3c7289c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,15 @@ jobs:
226226
run: |
227227
pip3 install dist/*.whl
228228
cd /
229+
echo "moo"
229230
(exec 2>/dev/null python3 -c 'import pyray; pyray.init_window(100,100,"test")' 2>/dev/null >output)
230-
exit_code=$?
231-
if cat output | grep -q "INFO: Initializing raylib"; then
231+
echo "woo"
232+
cat output
233+
if grep -q "INFO: Initializing raylib" output; then
234+
echo "boo"
232235
exit 0
233236
else
237+
echo "foo"
234238
exit 1
235239
fi
236240

0 commit comments

Comments
 (0)