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 8b79783 commit 8a7a664Copy full SHA for 8a7a664
1 file changed
.github/workflows/cross-platform-build-verification.yml
@@ -64,9 +64,16 @@ jobs:
64
- name: Build and Test
65
shell: bash
66
run: |
67
+ # Create a fresh virtual environment to avoid permission errors on self-hosted
68
+ python3 -m venv .venv
69
+
70
+ # Activate venv (Syntax works for Bash on Mac/Linux/Windows git-bash)
71
+ source .venv/bin/activate
72
73
python -m pip install --upgrade pip build
74
python -m build
75
pip install dist/*.whl
76
77
omnipkg --version
78
8pkg --version
79
omnipkg list
0 commit comments