Skip to content

Commit

Permalink
ci-py: List packages installed via pipx method
Browse files Browse the repository at this point in the history
  • Loading branch information
doshitan committed Jan 24, 2025
1 parent 9ef25ea commit 9c25749
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci-pipx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ jobs:
python-version: ${{ inputs.python-version }}

- name: Install with pipx
run: pipx install --python "$(which python)" .
run: |
pipx install --python "$(which python)" .
# list which versions of dependencies where resolved, for debugging
echo "::group::Installed dependencies"
pipx runpip nava-platform-cli list
echo "::endgroup::"
- name: Run --help
run: nava-platform --help
Expand Down

0 comments on commit 9c25749

Please sign in to comment.