try
This commit is contained in:
parent
3314597eed
commit
7899b51bbd
1 changed files with 7 additions and 1 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -226,7 +226,13 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
pip3 install dist/*.whl
|
pip3 install dist/*.whl
|
||||||
cd /
|
cd /
|
||||||
python3 -c 'import pyray; pyray.init_window(100,100,"test")'
|
output=$(python3 -c 'import pyray; pyray.init_window(100,100,"test")' 2>&1)
|
||||||
|
if echo "$output" | grep -q "INFO: Initializing raylib"; then
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
- name: Upload build Artifact wheel
|
- name: Upload build Artifact wheel
|
||||||
uses: actions/upload-artifact@v3.2.1
|
uses: actions/upload-artifact@v3.2.1
|
||||||
|
|
Reference in a new issue