Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
samapriya authored Sep 26, 2023
1 parent 80b54d0 commit bd28c29
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,12 @@ jobs:
pip install wheel
python setup.py sdist bdist_wheel
cd dist
pip install dist/*.whl
- name: List wheel files
run: |
for file in dist/*.whl; do
echo "Installing $file..."
pip install "$file"
done
- name: test pkg
run: |
geeup -h

0 comments on commit bd28c29

Please sign in to comment.