Skip to content

Commit

Permalink
add start test for all python version
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengSun committed Feb 25, 2024
1 parent ba4d152 commit 408d367
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Test PyGeoweaver
run: |
gw start
exit_code=$?
if [ $exit_code -eq 0 ]; then
echo "PyGeoweaver started successfully"
else
echo "Error: PyGeoweaver failed to start"
exit $exit_code
fi
build-n-publish:
needs: test-installation
Expand Down

0 comments on commit 408d367

Please sign in to comment.