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 aec0d32 commit c8b36c0Copy full SHA for c8b36c0
.github/workflows/ci.yml
@@ -84,6 +84,9 @@ jobs:
84
- name: Set up Python
85
run: uv python install 3.12
86
87
+ - name: Create virtual environment
88
+ run: uv venv
89
+
90
- name: Build package
91
run: |
92
echo "📦 Building Python package..."
@@ -92,8 +95,8 @@ jobs:
95
- name: Verify package installation
93
96
94
97
echo "✅ Verifying package can be installed..."
- uv pip install dist/*.whl --system
- python -c "import eoapi_notifier; print('Package installed successfully')"
98
+ uv pip install dist/*.whl
99
+ uv run python -c "import eoapi_notifier; print('Package installed successfully')"
100
101
- name: Upload build artifacts
102
uses: actions/upload-artifact@v4
0 commit comments