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 f77d2f6 commit 780c283Copy full SHA for 780c283
1 file changed
.github/workflows/cross-platform-build-verification.yml
@@ -63,8 +63,12 @@ jobs:
63
64
- name: Build and Test
65
shell: bash
66
+ env:
67
+ PYTHONUNBUFFERED: "1" # Force Python to show logs immediately
68
run: |
- # Use 'python' if 'python3' isn't available (common on Windows)
69
+ set -x # Debug mode: Print every command as it runs
70
+
71
+ # Use 'python' if 'python3' isn't available
72
if command -v python3 &>/dev/null; then PY=python3; else PY=python; fi
73
74
# Create venv
@@ -77,11 +81,12 @@ jobs:
77
81
source .venv/Scripts/activate
78
82
fi
79
83
80
- # Now run commands inside the verified venv
84
+ # Install and build
85
python -m pip install --upgrade pip build
86
python -m build
87
pip install dist/*.whl
88
89
+ # verify
90
omnipkg --version
91
8pkg --version
92
omnipkg list
0 commit comments