We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf9138 commit 3c7289cCopy full SHA for 3c7289c
.github/workflows/build.yml
@@ -226,11 +226,15 @@ jobs:
226
run: |
227
pip3 install dist/*.whl
228
cd /
229
+ echo "moo"
230
(exec 2>/dev/null python3 -c 'import pyray; pyray.init_window(100,100,"test")' 2>/dev/null >output)
- exit_code=$?
231
- if cat output | grep -q "INFO: Initializing raylib"; then
+ echo "woo"
232
+ cat output
233
+ if grep -q "INFO: Initializing raylib" output; then
234
+ echo "boo"
235
exit 0
236
else
237
+ echo "foo"
238
exit 1
239
fi
240
0 commit comments